]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
cls/rgw: raise debug level of bi_log_iterate_entries output 27974/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:00:53 +0000 (14:00 +0200)
Signed-off-by: Casey Bodley <cbodley@redhat.com>
(cherry picked from commit 9c8a207cef8792fc5a467b27b500153eef455c04)

src/cls/rgw/cls_rgw.cc

index fba47d4601a10136726d54e186dc834c9db2489f..e90dba0c022fcc01cc4bd7fd104a70f29829d5da 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;