From d76010900bf9012f2e66335787710531772766b7 Mon Sep 17 00:00:00 2001 From: Willem Jan Withagen Date: Sat, 29 Apr 2017 13:36:07 +0200 Subject: [PATCH] cls/log/cls_log.cc: reduce logging noise - The other reference in the source as already at 20. ./src/cls/timeindex/cls_timeindex.cc:85: CLS_LOG(20, "storing entry at %s", index.c_str()); And we need not always know where in the log items are stored. So it looks like a leftover debug feature. Fixes: http://tracker.ceph.com/issues/19835 Signed-off-by: Willem Jan Withagen --- src/cls/log/cls_log.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cls/log/cls_log.cc b/src/cls/log/cls_log.cc index a53149ce3b379..70b9eb85165e7 100644 --- a/src/cls/log/cls_log.cc +++ b/src/cls/log/cls_log.cc @@ -126,7 +126,7 @@ static int cls_log_add(cls_method_context_t hctx, bufferlist *in, bufferlist *ou index = entry.id; } - CLS_LOG(0, "storing entry at %s", index.c_str()); + CLS_LOG(20, "storing entry at %s", index.c_str()); if (index > header.max_marker) -- 2.39.5