From: Radoslaw Zarzynski Date: Thu, 4 Feb 2016 12:42:01 +0000 (+0100) Subject: rgw: improve debugs in RGWPostHTTPData. X-Git-Tag: v10.1.0~352^2~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=90e1f39469aaf41436bce43afc3e1eb612821f26;p=ceph.git rgw: improve debugs in RGWPostHTTPData. Signed-off-by: Radoslaw Zarzynski --- diff --git a/src/rgw/rgw_swift.cc b/src/rgw/rgw_swift.cc index d9b0d03538f..487a93ca128 100644 --- a/src/rgw/rgw_swift.cc +++ b/src/rgw/rgw_swift.cc @@ -139,7 +139,7 @@ public: char *s = (char *)ptr, *end = (char *)ptr + len; char *p = line; - ldout(cct, 10) << "read_http_header" << dendl; + ldout(cct, 20) << "RGWPostHTTPData::receive_header parsing HTTP headers" << dendl; while (s != end) { if (*s == '\r') { @@ -148,7 +148,8 @@ public: } if (*s == '\n') { *p = '\0'; - ldout(cct, 10) << "os_auth:" << line << dendl; + ldout(cct, 20) << "RGWPostHTTPData::receive_header: line=" + << line << dendl; // TODO: fill whatever data required here char *l = line; char *tok = strsep(&l, " \t:");