From: Josh Durgin Date: Thu, 28 Feb 2013 20:13:45 +0000 (-0800) Subject: ObjectCacher: fix debug log level in split X-Git-Tag: v0.59~33 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=cb3ee33532fb60665f39f6ccb1d69d67279fd5e1;p=ceph.git ObjectCacher: fix debug log level in split Level 0 should never be used for this kind of debugging. Signed-off-by: Josh Durgin Reviewed-by: Dan Mick --- diff --git a/src/osdc/ObjectCacher.cc b/src/osdc/ObjectCacher.cc index 5ba29a1c7947..8d9269314f8e 100644 --- a/src/osdc/ObjectCacher.cc +++ b/src/osdc/ObjectCacher.cc @@ -62,7 +62,7 @@ ObjectCacher::BufferHead *ObjectCacher::Object::split(BufferHead *left, loff_t o ++start_remove; for (map >::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()); }