From a89ce8e3c488c131cc75a5dc57347bd67d2add25 Mon Sep 17 00:00:00 2001 From: John Spray Date: Tue, 4 Jul 2017 13:29:38 -0400 Subject: [PATCH] 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 --- src/osd/PG.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osd/PG.cc b/src/osd/PG.cc index 725c5dd2d5afc..05ad63c69c121 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; -- 2.39.5