1
0
Fork 0

Fixed loglevel from error to debug as the situation is actually expect, just not performant.

This commit is contained in:
Michael Hackstein 2017-03-30 16:39:33 +02:00
parent e23560a399
commit 8a42089bed
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ void TraverserCache::insertDocument(StringRef idString, arangodb::velocypack::Sl
if (value) {
bool success = _cache->insert(value.get());
if (!success) {
LOG_TOPIC(ERR, Logger::GRAPHS) << "Insert document into cache failed";
LOG_TOPIC(DEBUG, Logger::GRAPHS) << "Insert document into cache failed";
}
// Cache is responsible.
// If this failed, well we do not store it and read it again next time.