aboutsummaryrefslogtreecommitdiffstats
path: root/fusearchive.py
diff options
context:
space:
mode:
Diffstat (limited to 'fusearchive.py')
-rwxr-xr-xfusearchive.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/fusearchive.py b/fusearchive.py
index f728640..67e42ea 100755
--- a/fusearchive.py
+++ b/fusearchive.py
@@ -352,12 +352,12 @@ class FuseArchive(Fuse):
dmsg( 3, str(self) + " init complete" )
def read(self, length, offset):
- dmsg( 2, "Reading from " + self.orig_path )
+ dmsg( 3, "Reading from " + self.orig_path )
self.file.seek(offset)
return self.file.read(length)
def write(self, buf, offset):
- dmsg( 2, "Writing to " + self.orig_path )
+ dmsg( 3, "Writing to " + self.orig_path )
self.file.seek(offset)
self.file.write(buf)
self.modified = True