storage_service: log sstable integrity checker status

INFO  2018-02-27 16:02:36,246 [shard 0] storage_service - SSTable data integrity checker is enabled.

Fixes #3071.

Signed-off-by: Raphael S. Carvalho <raphaelsc@scylladb.com>
Message-Id: <20180228174253.9190-1-raphaelsc@scylladb.com>
This commit is contained in:
Raphael S. Carvalho
2018-02-28 14:42:53 -03:00
committed by Tomasz Grabiec
parent 91ccf82ce4
commit 954efcd209

View File

@@ -1418,6 +1418,12 @@ future<> storage_service::init_server(int delay) {
}
slogger.info("Not joining ring as requested. Use JMX (StorageService->joinRing()) to initiate ring joining");
}
if (_db.local().get_config().enable_sstable_data_integrity_check()) {
slogger.info0("SSTable data integrity checker is enabled.");
} else {
slogger.info0("SSTable data integrity checker is disabled.");
}
});
}