]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
ObjectCacher: fix debug log level in split
authorJosh Durgin <josh.durgin@inktank.com>
Thu, 28 Feb 2013 20:13:45 +0000 (12:13 -0800)
committerJosh Durgin <josh.durgin@inktank.com>
Wed, 6 Mar 2013 20:32:43 +0000 (12:32 -0800)
Level 0 should never be used for this kind of debugging.

Signed-off-by: Josh Durgin <josh.durgin@inktank.com>
Reviewed-by: Dan Mick <dan.mick@inktank.com>
src/osdc/ObjectCacher.cc

index 5ba29a1c79476a0f27eec4a5c0b402a10f13dbd3..8d9269314f8e4f39ee4d0538a0e3cc06942d76db 100644 (file)
@@ -62,7 +62,7 @@ ObjectCacher::BufferHead *ObjectCacher::Object::split(BufferHead *left, loff_t o
       ++start_remove;
     for (map<loff_t, list<Context*> >::iterator p = start_remove;
         p != left->waitfor_read.end(); ++p) {
-      ldout(oc->cct, 0) << "split  moving waiters at byte " << p->first << " to right bh" << dendl;
+      ldout(oc->cct, 20) << "split  moving waiters at byte " << p->first << " to right bh" << dendl;
       right->waitfor_read[p->first].swap( p->second );
       assert(p->second.empty());
     }