Browse Source

adjust error log

pull/2498/head
Chris Lu 3 years ago
parent
commit
ad16221a35
  1. 4
      weed/command/filer_remote_sync_dir.go

4
weed/command/filer_remote_sync_dir.go

@ -169,7 +169,9 @@ func retriedWriteFile(client remote_storage.RemoteStorageClient, filerSource *so
}
return nil
})
glog.Errorf("write to %s: %v", dest, err)
if err != nil {
glog.Errorf("write to %s: %v", dest, err)
}
return
}

Loading…
Cancel
Save