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 <abhishek@suse.com>
This commit is contained in:
Abhishek Lekshmanan 2016-05-09 14:05:06 +02:00
parent aee1d643be
commit a3fdd26b02

View File

@ -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;