src/dbfs/fileop.c
changeset 36 56427f22e969
parent 35 4f10421681d2
child 40 03017f5f0087
--- a/src/dbfs/fileop.c	Fri Oct 17 20:12:20 2008 +0300
+++ b/src/dbfs/fileop.c	Tue Oct 21 21:42:17 2008 +0300
@@ -41,7 +41,7 @@
     if (_dbfs_mode(type) != S_IFREG)
         EERROR(err = EINVAL, "wrong type: %s", type);
     
-    INFO("[dbfs.open %p:%p] -> ino=%lu, type=%s", fop, fop->base.req, (unsigned long int) fop->base.ino, type);
+    INFO("\t[dbfs.open %p:%p] -> ino=%lu, type=%s", fop, fop->base.req, (unsigned long int) fop->base.ino, type);
     
     // open_fn done, do the open_reply
     if ((err = dbfs_op_open_reply(&fop->base)))
@@ -142,7 +142,7 @@
     if (evsql_result_binary(res, 0, 0, &buf, &size, 0))
         SERROR(err = EIO);
 
-    INFO("[dbfs.read %p:%p] -> size=%zu", fop, fop->base.req, size);
+    INFO("\t[dbfs.read %p:%p] -> size=%zu", fop, fop->base.req, size);
         
     // send it
     if ((err = fuse_reply_buf(fop->base.req, buf, size)))
@@ -221,7 +221,7 @@
     if (evsql_result_uint32(res, 0, 0, &size, 0))
         SERROR(err = EIO);
 
-    INFO("[dbfs.write %p:%p] -> size=%lu", fop, fop->base.req, (long unsigned int) size);
+    INFO("\t[dbfs.write %p:%p] -> size=%lu", fop, fop->base.req, (long unsigned int) size);
         
     // send it
     if ((err = fuse_reply_write(fop->base.req, size)))