diff options
Diffstat (limited to 'pathfs_frontend/fs.go')
-rw-r--r-- | pathfs_frontend/fs.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pathfs_frontend/fs.go b/pathfs_frontend/fs.go index bd97f9a..9f5b1d6 100644 --- a/pathfs_frontend/fs.go +++ b/pathfs_frontend/fs.go @@ -174,7 +174,7 @@ func (fs *FS) Unlink(name string, context *fuse.Context) (code fuse.Status) { cName := fs.EncryptPath(name) code = fs.FileSystem.Unlink(cName, context) if code != fuse.OK { - cryptfs.Notice.Printf("Unlink failed on %s [%s], code=%s\n", name, cName, code.String()) + cryptfs.Warn.Printf("Unlink failed on %s [%s], code=%s\n", name, cName, code.String()) } return code } |