1
0
Fork 0

make message a debug message instead of an error message

This commit is contained in:
jsteemann 2018-11-22 18:46:42 +01:00
parent d5cb94d2d0
commit a0c732bc80
1 changed files with 1 additions and 1 deletions

View File

@ -371,7 +371,7 @@ Result RocksDBCollectionMeta::deserializeMeta(rocksdb::DB* db, LogicalCollection
TRI_ASSERT(committedSeq <= db->GetLatestSequenceNumber());
auto est = std::make_unique<RocksDBCuckooIndexEstimator<uint64_t>>(committedSeq, estimateInput);
LOG_TOPIC(ERR, Logger::ENGINES)
LOG_TOPIC(DEBUG, Logger::ENGINES)
<< "found index estimator for objectId '" << idx->objectId()
<< "' committed seqNr '" << committedSeq << "' with estimate "
<< est->computeEstimate();