From: Yehuda Sadeh Date: Thu, 6 Jun 2013 20:45:18 +0000 (-0700) Subject: rgw: minor logging change X-Git-Tag: v0.67-rc1~128^2~80 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=2237086d15c6b9b1366388ac9ac2cbda51de83b6;p=ceph.git rgw: minor logging change Signed-off-by: Yehuda Sadeh --- diff --git a/src/rgw/rgw_user.cc b/src/rgw/rgw_user.cc index 3880bf0884a..d5e341d4c8f 100644 --- a/src/rgw/rgw_user.cc +++ b/src/rgw/rgw_user.cc @@ -74,7 +74,8 @@ int rgw_store_user_info(RGWRados *store, RGWUserInfo& info, RGWUserInfo *old_inf RGWUserInfo inf; int r = rgw_get_user_info_by_swift(store, k.id, inf); if (r >= 0 && inf.user_id.compare(info.user_id) != 0) { - ldout(store->ctx(), 0) << "WARNING: can't store user info, swift id already mapped to another user" << dendl; + ldout(store->ctx(), 0) << "WARNING: can't store user info, swift id (" << k.id + << ") already mapped to another user (" << info.user_id << ")" << dendl; return -EEXIST; } }