mount: do not log successful unmount as an error - fixes #8766

This commit is contained in:
Tilman Vogel
2025-08-23 17:30:33 +02:00
committed by GitHub
parent 1aaee9edce
commit b010591c96

View File

@@ -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")
} }
}) })
} }