From c087ffc187614d11e502e74febc733a2792c2e4d Mon Sep 17 00:00:00 2001 From: Greg Farnum Date: Thu, 30 Jul 2009 14:37:21 -0700 Subject: [PATCH] uClient: Whoops! Made Inode get/put dout at a lower importance. --- src/client/Client.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/Client.h b/src/client/Client.h index 9ee722cc72b39..5758c02bd653e 100644 --- a/src/client/Client.h +++ b/src/client/Client.h @@ -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); } -- 2.39.5