diff options
author | Jakob Unterwurzacher | 2015-11-09 22:33:42 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2015-11-09 22:33:42 +0100 |
commit | 99dfc84992df104ad23c8729f3be8a1f716937c8 (patch) | |
tree | eb650c128090338f91cda886317238f7c318bbce /pathfs_frontend | |
parent | 79b36dd8eb3eff78bba07f636c5bfeb7c04243ba (diff) |
Add "-q" (quiet) flag
Diffstat (limited to 'pathfs_frontend')
-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 } |