]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
uClient: Whoops! Made Inode get/put dout at a lower importance.
authorGreg Farnum <gregf@hq.newdream.net>
Thu, 30 Jul 2009 21:37:21 +0000 (14:37 -0700)
committerGreg Farnum <gregf@hq.newdream.net>
Thu, 30 Jul 2009 21:40:10 +0000 (14:40 -0700)
src/client/Client.h

index 9ee722cc72b39086233ffc5daa38f892ed1dd059..5758c02bd653e52bc0cecc6c2a13ab396b5dd01f 100644 (file)
@@ -380,11 +380,11 @@ class Inode {
 
   void get() { 
     ref++; 
-    dout(0) << "inode.get on " << this << " " << hex << ino << dec << " now " << ref << dendl;
+    dout(30) << "inode.get on " << this << " " << hex << ino << dec << " now " << ref << dendl;
   }
   void put(int n=1) { 
     ref -= n; 
-    dout(0) << "inode.put on " << this << " " << hex << ino << dec << " now " << ref << dendl;
+    dout(30) << "inode.put on " << this << " " << hex << ino << dec << " now " << ref << dendl;
     assert(ref >= 0);
   }