From: magicrobotmonkey Date: Tue, 19 Jan 2016 15:18:26 +0000 (-0500) Subject: Increase verbosity level on RGWObjManifest line X-Git-Tag: v10.1.0~324^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=4f4017ef2cfca9b489e2d876579c2cd9240f2f23;p=ceph.git Increase verbosity level on RGWObjManifest line My RadosGW log is filling with lines starting with RGWObjManifest::operator++() result: with debug at 0. I believe this line should be at debug level 20 like the others just before it. Signed-off-by: Aaron Bassett magicrobotmonkey@gmail.com --- diff --git a/src/rgw/rgw_rados.cc b/src/rgw/rgw_rados.cc index aa5b3b4914e..f60d692a187 100644 --- a/src/rgw/rgw_rados.cc +++ b/src/rgw/rgw_rados.cc @@ -636,7 +636,7 @@ void RGWObjManifest::obj_iterator::operator++() stripe_size = 0; } - dout(0) << "RGWObjManifest::operator++(): result: ofs=" << ofs << " stripe_ofs=" << stripe_ofs << " part_ofs=" << part_ofs << " rule->part_size=" << rule->part_size << dendl; + dout(20) << "RGWObjManifest::operator++(): result: ofs=" << ofs << " stripe_ofs=" << stripe_ofs << " part_ofs=" << part_ofs << " rule->part_size=" << rule->part_size << dendl; update_location(); }