summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Durgin <josh.durgin@inktank.com>2013-02-28 12:13:45 -0800
committerJosh Durgin <josh.durgin@inktank.com>2013-03-06 12:35:48 -0800
commitd0dafaa77f96fa91785df0796806ea07fd93f319 (patch)
tree011ee4048d31dc7ae0d7c894d97bfcda00834c0d
parentff014ed26bfa4fbf40acffec4eb4805b95a9982c (diff)
downloadceph-d0dafaa77f96fa91785df0796806ea07fd93f319.tar.gz
ObjectCacher: fix debug log level in split
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> (cherry picked from commit cb3ee33532fb60665f39f6ccb1d69d67279fd5e1)
-rw-r--r--src/osdc/ObjectCacher.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osdc/ObjectCacher.cc b/src/osdc/ObjectCacher.cc
index 8fd7b7ed251..a1159036873 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<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());
}