From 8b4ed89d14674c5260337af95bceba72648349b2 Mon Sep 17 00:00:00 2001 From: Max Neunhoeffer Date: Sat, 28 Jan 2017 21:26:34 +0100 Subject: [PATCH] More logging on level info. --- arangod/Cluster/HeartbeatThread.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arangod/Cluster/HeartbeatThread.cpp b/arangod/Cluster/HeartbeatThread.cpp index 261abe6509..71d986d935 100644 --- a/arangod/Cluster/HeartbeatThread.cpp +++ b/arangod/Cluster/HeartbeatThread.cpp @@ -551,7 +551,7 @@ bool HeartbeatThread::init() { //////////////////////////////////////////////////////////////////////////////// void HeartbeatThread::dispatchedJobResult(DBServerAgencySyncResult result) { - LOG_TOPIC(TRACE, Logger::HEARTBEAT) << "Dispatched job returned!"; + LOG_TOPIC(INFO, Logger::HEARTBEAT) << "Dispatched job returned!"; bool doSleep = false; { MUTEX_LOCKER(mutexLocker, *_statusLock); @@ -735,7 +735,7 @@ bool HeartbeatThread::syncDBServerStatusQuo() { // only warn if the application server is still there and dispatching // should succeed - LOG_TOPIC(TRACE, Logger::HEARTBEAT) << "dispatching sync"; + LOG_TOPIC(INFO, Logger::HEARTBEAT) << "dispatching sync"; // schedule a job for the change auto self = shared_from_this();