]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
cls/rgw: raise debug level of bi_log_iterate_entries output
authorCasey Bodley <cbodley@redhat.com>
Fri, 14 Dec 2018 19:38:31 +0000 (14:38 -0500)
committerCasey Bodley <cbodley@redhat.com>
Fri, 14 Dec 2018 19:38:31 +0000 (14:38 -0500)
Signed-off-by: Casey Bodley <cbodley@redhat.com>
src/cls/rgw/cls_rgw.cc

index 3bb5d0fff4843e283d0a47f4dbc9b28dbee4bd9f..4ea16c77b26278a29347368e804dac7b3f9db8d7 100644 (file)
@@ -2617,7 +2617,7 @@ static int bi_log_iterate_entries(cls_method_context_t hctx, const string& marke
     end_key.append(end_marker);
   }
 
-  CLS_LOG(0, "bi_log_iterate_entries start_key=%s end_key=%s\n", start_key.c_str(), end_key.c_str());
+  CLS_LOG(10, "bi_log_iterate_entries start_key=%s end_key=%s\n", start_key.c_str(), end_key.c_str());
 
   string filter;
 
@@ -2635,7 +2635,7 @@ static int bi_log_iterate_entries(cls_method_context_t hctx, const string& marke
     const string& key = iter->first;
     rgw_bi_log_entry e;
 
-    CLS_LOG(0, "bi_log_iterate_entries key=%s bl.length=%d\n", key.c_str(), (int)iter->second.length());
+    CLS_LOG(10, "bi_log_iterate_entries key=%s bl.length=%d\n", key.c_str(), (int)iter->second.length());
 
     if (key.compare(end_key) > 0) {
       key_iter = key;