Skip to content

Commit 8d7f719

Browse files
committed
Fix logs output of the tftp datasource
1 parent 404f5b3 commit 8d7f719

File tree

1 file changed

+1
-1
lines changed
  • config/cloudinit/datasource/tftp

1 file changed

+1
-1
lines changed

config/cloudinit/datasource/tftp/tftp.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ func (f *RemoteFile) Finish() error {
5555
}
5656

5757
func (f *RemoteFile) String() string {
58-
return fmt.Sprintf("%s: %s%s (lastError: %v)", f.Type(), f.host, f.path, f.lastError)
58+
return fmt.Sprintf("%s, host:%s, path:%s (lastError: %v)", f.Type(), f.host, f.path, f.lastError)
5959
}
6060

6161
func (f *RemoteFile) AvailabilityChanges() bool {

0 commit comments

Comments
 (0)