From 4bee6ff1bca70b3ded10a04bc297bb8be5ab64d8 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Mon, 17 Feb 2014 13:05:58 -0800 Subject: [PATCH] osd/ReplicatedPG: clean up agent skip debug output Signed-off-by: Sage Weil --- src/osd/ReplicatedPG.cc | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/osd/ReplicatedPG.cc b/src/osd/ReplicatedPG.cc index d3d7e72842d..65771d20f6d 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; } -- 2.47.3