mirror of
https://github.com/rclone/rclone.git
synced 2025-12-10 05:13:45 +00:00
mount: do not log successful unmount as an error - fixes #8766
This commit is contained in:
committed by
Nick Craig-Wood
parent
32eed8dd36
commit
2c2642a927
@@ -396,7 +396,7 @@ func (m *MountPoint) Wait() error {
|
|||||||
if err := m.Unmount(); err != nil {
|
if err := m.Unmount(); err != nil {
|
||||||
fs.Errorf(m.MountPoint, "Failed to unmount: %v", err)
|
fs.Errorf(m.MountPoint, "Failed to unmount: %v", err)
|
||||||
} else {
|
} else {
|
||||||
fs.Errorf(m.MountPoint, "Unmounted rclone mount")
|
fs.Logf(m.MountPoint, "Unmounted rclone mount")
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user