]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
rgw: improve debugs in RGWPostHTTPData.
authorRadoslaw Zarzynski <rzarzynski@mirantis.com>
Thu, 4 Feb 2016 12:42:01 +0000 (13:42 +0100)
committerYehuda Sadeh <yehuda@redhat.com>
Fri, 19 Feb 2016 20:16:36 +0000 (12:16 -0800)
Signed-off-by: Radoslaw Zarzynski <rzarzynski@mirantis.com>
src/rgw/rgw_swift.cc

index d9b0d03538f7fd3da3c24dece28d446f5be4779a..487a93ca128e53206f4bdab87d05822c8746e9a1 100644 (file)
@@ -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:");