drop the log level of a message in RocksDbLocalStore

Summary:
This message was added in D14337058.  It is logged at the `INFO` level, which
is enabled by default, but doesn't seem to add much value to normal production
logs.

Reviewed By: chadaustin

Differential Revision: D14712654

fbshipit-source-id: 5a86d883ace30e22d299046e33a6cd6247432857
This commit is contained in:
Adam Simpkins 2019-04-01 14:45:55 -07:00 committed by Facebook Github Bot
parent 3f307498ec
commit 5eb2009088

View File

@ -301,7 +301,7 @@ RocksDbLocalStore::getBatch(
.via(&ioPool_)
.thenValue(
[this, keySpace, keys = std::move(batch)](folly::Unit&&) {
XLOG(INFO) << __func__ << " starting to actually do work";
XLOG(DBG3) << __func__ << " starting to actually do work";
std::vector<Slice> keySlices;
std::vector<std::string> values;
std::vector<rocksdb::ColumnFamilyHandle*> columns;