From: Willem Jan Withagen Date: Sat, 29 Apr 2017 11:36:07 +0000 (+0200) Subject: cls/log/cls_log.cc: reduce logging noise X-Git-Tag: v10.2.10~94^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=89a2f6476d81bd233d76771915e080fce66ff228;p=ceph.git 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 (cherry picked from commit d76010900bf9012f2e66335787710531772766b7) --- diff --git a/src/cls/log/cls_log.cc b/src/cls/log/cls_log.cc index 89745bb8bb73..b4ee089a1a90 100644 --- a/src/cls/log/cls_log.cc +++ b/src/cls/log/cls_log.cc @@ -132,7 +132,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)