From d85dddfc7a95508b664e1ea20c2f07f6684b9019 Mon Sep 17 00:00:00 2001 From: Jan Steemann Date: Sat, 1 Nov 2014 15:22:27 +0100 Subject: [PATCH] be less verbose --- arangod/VocBase/server.cpp | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/arangod/VocBase/server.cpp b/arangod/VocBase/server.cpp index 9f5e4d860b..9efa2148c6 100644 --- a/arangod/VocBase/server.cpp +++ b/arangod/VocBase/server.cpp @@ -477,9 +477,16 @@ static int CreateApplicationDirectory (char const* name, res = TRI_CreateDirectory(path); if (res == TRI_ERROR_NO_ERROR) { - LOG_INFO("created application directory '%s' for database '%s'", - path, - name); + if (triagens::wal::LogfileManager::instance()->isInRecovery()) { + LOG_TRACE("created application directory '%s' for database '%s'", + path, + name); + } + else { + LOG_INFO("created application directory '%s' for database '%s'", + path, + name); + } } else { LOG_ERROR("unable to create application directory '%s' for database '%s': %s",