From 9c8a207cef8792fc5a467b27b500153eef455c04 Mon Sep 17 00:00:00 2001 From: Casey Bodley Date: Fri, 14 Dec 2018 14:38:31 -0500 Subject: [PATCH] cls/rgw: raise debug level of bi_log_iterate_entries output Signed-off-by: Casey Bodley --- src/cls/rgw/cls_rgw.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cls/rgw/cls_rgw.cc b/src/cls/rgw/cls_rgw.cc index 3bb5d0fff48..4ea16c77b26 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; -- 2.39.5