From: Abhishek Lekshmanan Date: Mon, 9 May 2016 12:05:06 +0000 (+0200) Subject: rgw: drop unnecessary spacing in rgw zg init log X-Git-Tag: v11.0.0~627^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a3fdd26b02bf69bbd32e93c945395c78cf2df7c6;p=ceph.git rgw: drop unnecessary spacing in rgw zg init log Dropping unneeded space when we're printing the failed reading zg info message Signed-off-by: Abhishek Lekshmanan --- diff --git a/src/rgw/rgw_rados.cc b/src/rgw/rgw_rados.cc index ac003646a17b..449ba359efd4 100644 --- a/src/rgw/rgw_rados.cc +++ b/src/rgw/rgw_rados.cc @@ -3450,7 +3450,7 @@ int RGWRados::init_zg_from_period(bool *initialized) return 0; } if (ret < 0) { - ldout(cct, 0) << "failed reading zonegroup info: " << " " << cpp_strerror(-ret) << dendl; + ldout(cct, 0) << "failed reading zonegroup info: " << cpp_strerror(-ret) << dendl; return ret; } ldout(cct, 20) << "period zonegroup name " << zonegroup.get_name() << dendl;