]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
cls/rgw: raise debug level of bi_log_iterate_entries output 27973/head
authorCasey Bodley <cbodley@redhat.com>
Fri, 14 Dec 2018 19:38:31 +0000 (14:38 -0500)
committerIain Buclaw <iain.buclaw@dunnhumby.com>
Mon, 13 May 2019 12:02:14 +0000 (14:02 +0200)
Signed-off-by: Casey Bodley <cbodley@redhat.com>
(cherry picked from commit 9c8a207cef8792fc5a467b27b500153eef455c04)

src/cls/rgw/cls_rgw.cc

index dc5fd1fc77cac089b444f8261f91d7c5695648fa..8c03c0877b956108276117b97dd43a6ad5351fc6 100644 (file)
@@ -2619,7 +2619,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;
 
@@ -2637,7 +2637,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;