From: Sage Weil Date: Mon, 17 Feb 2014 21:05:58 +0000 (-0800) Subject: osd/ReplicatedPG: clean up agent skip debug output X-Git-Tag: v0.78~164^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=4bee6ff1bca70b3ded10a04bc297bb8be5ab64d8;p=ceph.git osd/ReplicatedPG: clean up agent skip debug output Signed-off-by: Sage Weil --- diff --git a/src/osd/ReplicatedPG.cc b/src/osd/ReplicatedPG.cc index d3d7e72842df..65771d20f6d4 100644 --- a/src/osd/ReplicatedPG.cc +++ b/src/osd/ReplicatedPG.cc @@ -10313,18 +10313,17 @@ void ReplicatedPG::agent_work(int start_max) ObjectContextRef obc = get_object_context(*p, false, NULL); if (!obc) { // we didn't flush; we may miss something here. - dout(20) << __func__ << " no obc for " << *p << ", skipping" << dendl; + dout(20) << __func__ << " skip (no obc) " << *p << dendl; osd->logger->inc(l_osd_agent_skip); continue; } if (!obc->obs.exists) { - dout(20) << __func__ << " " << obc->obs.oi.soid << " dne, skipping" - << dendl; + dout(20) << __func__ << " skip (dne) " << obc->obs.oi.soid << dendl; osd->logger->inc(l_osd_agent_skip); continue; } if (scrubber.write_blocked_by_scrub(obc->obs.oi.soid)) { - dout(20) << __func__ << " scrubbing, skipping " << obc->obs.oi << dendl; + dout(20) << __func__ << " skip (scrubbing) " << obc->obs.oi << dendl; osd->logger->inc(l_osd_agent_skip); continue; }