From: David Zafman Date: Sat, 21 May 2016 01:19:42 +0000 (-0700) Subject: osd: Fix log messages X-Git-Tag: v11.1.0~494^2~6 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=b40ec3fe890679b4c73778815e1bedd492cb264b;p=ceph.git osd: Fix log messages Signed-off-by: David Zafman --- diff --git a/src/osd/ReplicatedPG.cc b/src/osd/ReplicatedPG.cc index c47c72d945d9..a7c00091ad1d 100644 --- a/src/osd/ReplicatedPG.cc +++ b/src/osd/ReplicatedPG.cc @@ -8831,7 +8831,7 @@ void ReplicatedPG::submit_log_entries( ObcLockManager &&manager, boost::optional > &&on_complete) { - dout(10) << __func__ << entries << dendl; + dout(10) << __func__ << " " << entries << dendl; assert(is_primary()); ObjectStore::Transaction t; @@ -9830,7 +9830,7 @@ void ReplicatedPG::failed_push(pg_shard_t from, const hobject_t &soid) assert(recovering.count(soid)); recovering.erase(soid); missing_loc.remove_location(soid, from); - dout(0) << "_failed_push " << soid << " from shard " << from + dout(0) << __func__ << " " << soid << " from shard " << from << ", reps on " << missing_loc.get_locations(soid) << " unfound? " << missing_loc.is_unfound(soid) << dendl; finish_recovery_op(soid); // close out this attempt, @@ -10425,7 +10425,7 @@ void ReplicatedPG::_clear_recovery_state() void ReplicatedPG::cancel_pull(const hobject_t &soid) { - dout(20) << __func__ << ": soid" << dendl; + dout(20) << __func__ << ": " << soid << dendl; assert(recovering.count(soid)); ObjectContextRef obc = recovering[soid]; if (obc) {