From: David Zafman Date: Fri, 18 Dec 2015 02:04:08 +0000 (-0800) Subject: osd: Improve log message which isn't about a particular shard X-Git-Tag: v10.0.3~11^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=e85907fcc582922925609f595f68c597a88c39dc;p=ceph.git osd: Improve log message which isn't about a particular shard Remove redundant dout() Signed-off-by: David Zafman --- diff --git a/src/osd/PGBackend.cc b/src/osd/PGBackend.cc index 806a4a0a487..755ce0e4b22 100644 --- a/src/osd/PGBackend.cc +++ b/src/osd/PGBackend.cc @@ -571,10 +571,9 @@ void PGBackend::be_compare_scrubmaps( be_select_auth_object(*k, maps, okseed, &auth_oi); list auth_list; if (auth == maps.end()) { - dout(10) << __func__ << ": unable to find any auth object" << dendl; ++shallow_errors; - errorstream << pgid << " shard " << j->first - << ": soid failed to pick suitable auth object\n"; + errorstream << pgid.pgid << " soid " << *k + << ": failed to pick suitable auth object\n"; continue; } auth_list.push_back(auth->first);