From: John Spray Date: Tue, 4 Jul 2017 17:29:38 +0000 (-0400) Subject: osd: don't log per-PG backfill messages at INFO level X-Git-Tag: v12.1.1~58^2~11 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a89ce8e3c488c131cc75a5dc57347bd67d2add25;p=ceph.git osd: don't log per-PG backfill messages at INFO level This behaviour led to way too many messages going to the cluster log when an OSD is marked in. Retain the messages at debug level. Signed-off-by: John Spray --- diff --git a/src/osd/PG.cc b/src/osd/PG.cc index 725c5dd2d5af..05ad63c69c12 100644 --- a/src/osd/PG.cc +++ b/src/osd/PG.cc @@ -1677,7 +1677,7 @@ void PG::activate(ObjectStore::Transaction& t, * behind. */ // backfill - osd->clog->info() << info.pgid << " starting backfill to osd." << peer + osd->clog->debug() << info.pgid << " starting backfill to osd." << peer << " from (" << pi.log_tail << "," << pi.last_update << "] " << pi.last_backfill << " to " << info.last_update;