From: Casey Bodley Date: Fri, 14 Dec 2018 19:38:31 +0000 (-0500) Subject: cls/rgw: raise debug level of bi_log_iterate_entries output X-Git-Tag: v14.1.0~68^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=9c8a207cef8792fc5a467b27b500153eef455c04;p=ceph.git cls/rgw: raise debug level of bi_log_iterate_entries output Signed-off-by: Casey Bodley --- diff --git a/src/cls/rgw/cls_rgw.cc b/src/cls/rgw/cls_rgw.cc index 3bb5d0fff484..4ea16c77b262 100644 --- a/src/cls/rgw/cls_rgw.cc +++ b/src/cls/rgw/cls_rgw.cc @@ -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;