mirror of https://gitee.com/bigwinds/arangodb
Fixed loglevel from error to debug as the situation is actually expect, just not performant.
This commit is contained in:
parent
e23560a399
commit
8a42089bed
|
@ -152,7 +152,7 @@ void TraverserCache::insertDocument(StringRef idString, arangodb::velocypack::Sl
|
||||||
if (value) {
|
if (value) {
|
||||||
bool success = _cache->insert(value.get());
|
bool success = _cache->insert(value.get());
|
||||||
if (!success) {
|
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.
|
// Cache is responsible.
|
||||||
// If this failed, well we do not store it and read it again next time.
|
// If this failed, well we do not store it and read it again next time.
|
||||||
|
|
Loading…
Reference in New Issue