forked from TrueCloudLab/rclone
sync: log when we abandon the sync due to a fatal error
This commit is contained in:
parent
be22735609
commit
be79b47a7a
1 changed files with 1 additions and 0 deletions
|
@ -164,6 +164,7 @@ func (s *syncCopyMove) processError(err error) {
|
||||||
switch {
|
switch {
|
||||||
case fserrors.IsFatalError(err):
|
case fserrors.IsFatalError(err):
|
||||||
if !s.aborting() {
|
if !s.aborting() {
|
||||||
|
fs.Errorf(nil, "Cancelling sync due to fatal error: %v", err)
|
||||||
s.cancel()
|
s.cancel()
|
||||||
}
|
}
|
||||||
s.fatalErr = err
|
s.fatalErr = err
|
||||||
|
|
Loading…
Add table
Reference in a new issue