From 34eaeedff2d00d9566773ea4a54733ae9f2db7fa Mon Sep 17 00:00:00 2001 From: "Raphael S. Carvalho" Date: Mon, 3 Aug 2015 15:29:12 -0300 Subject: [PATCH] db: remove imprecise log message about compaction This message is printed when we are about to run the strategy code which may not decide to compact anything. Compaction is already properly logged in sstables::compact_sstables(). Signed-off-by: Raphael S. Carvalho --- database.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/database.cc b/database.cc index f1fc5e57c1..449f0a8924 100644 --- a/database.cc +++ b/database.cc @@ -540,7 +540,6 @@ void column_family::start_compaction() { return with_gate(_in_flight_seals, [this] { sstables::compaction_strategy strategy = _compaction_strategy; return do_with(std::move(strategy), [this] (sstables::compaction_strategy& cs) { - dblog.info("started compaction for column_family {}/{}", _schema->ks_name(), _schema->cf_name()); return cs.compact(*this).then([this] { // If compaction completed successfully, let's reset sleep time of _compaction_retry. _compaction_retry.reset();