diff options
Diffstat (limited to 'pathfs_frontend')
-rw-r--r-- | pathfs_frontend/file.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pathfs_frontend/file.go b/pathfs_frontend/file.go index 47c2ffc..8fdd4b2 100644 --- a/pathfs_frontend/file.go +++ b/pathfs_frontend/file.go @@ -90,7 +90,7 @@ func (f *file) doRead(off uint64, length uint64) ([]byte, fuse.Status) { // Read - FUSE call func (f *file) Read(buf []byte, off int64) (resultData fuse.ReadResult, code fuse.Status) { - cryptfs.Debug.Printf("\n\nGot read request: len=%d off=%d\n", len(buf), off) + cryptfs.Debug.Printf("Read: offset=%d length=%d\n", len(buf), off) if f.writeOnly { cryptfs.Warn.Printf("Tried to read from write-only file\n") |