1
0
mirror of https://github.com/rancher/os.git synced 2025-09-28 14:05:03 +00:00

Fix logs output of the tftp datasource

This commit is contained in:
niusmallnan
2019-05-28 13:57:00 +08:00
parent 404f5b38da
commit 8d7f7199c9

View File

@@ -55,7 +55,7 @@ func (f *RemoteFile) Finish() error {
}
func (f *RemoteFile) String() string {
return fmt.Sprintf("%s: %s%s (lastError: %v)", f.Type(), f.host, f.path, f.lastError)
return fmt.Sprintf("%s, host:%s, path:%s (lastError: %v)", f.Type(), f.host, f.path, f.lastError)
}
func (f *RemoteFile) AvailabilityChanges() bool {