From 2ee42720fcd17c02a0cfddd06471d68633e74b0e Mon Sep 17 00:00:00 2001 From: Kaveh Vahedipour Date: Mon, 26 Sep 2016 10:55:37 +0200 Subject: [PATCH] Too verbose debug output --- arangod/Agency/RestAgencyHandler.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arangod/Agency/RestAgencyHandler.cpp b/arangod/Agency/RestAgencyHandler.cpp index 2ead84418c..763a798faa 100644 --- a/arangod/Agency/RestAgencyHandler.cpp +++ b/arangod/Agency/RestAgencyHandler.cpp @@ -245,7 +245,8 @@ inline RestHandler::status RestAgencyHandler::handleRead() { try { query = _request->toVelocyPackBuilderPtr(&options); } catch (std::exception const& e) { - LOG_TOPIC(WARN, Logger::AGENCY) << e.what() << " " << __FILE__ << ":" << __LINE__; + LOG_TOPIC(DEBUG, Logger::AGENCY) + << e.what() << " " << __FILE__ << ":" << __LINE__; generateError(rest::ResponseCode::BAD, 400); return status::DONE; }