diff --git a/src/rpc/RPC.h b/src/rpc/RPC.h index f9d387555..9af45424b 100644 --- a/src/rpc/RPC.h +++ b/src/rpc/RPC.h @@ -217,7 +217,7 @@ logDuration(Context const& ctx, T const& dur) else if (seconds > 1) BOOST_LOG_TRIVIAL(warning) << ss.str(); else - BOOST_LOG_TRIVIAL(debug) << ss.str(); + BOOST_LOG_TRIVIAL(info) << ss.str(); } } // namespace RPC diff --git a/src/webserver/HttpBase.h b/src/webserver/HttpBase.h index 82fec61ec..c387af8cd 100644 --- a/src/webserver/HttpBase.h +++ b/src/webserver/HttpBase.h @@ -330,7 +330,7 @@ handle_request( try { - BOOST_LOG_TRIVIAL(info) << "Received request: " << req.body(); + BOOST_LOG_TRIVIAL(debug) << "Received request: " << req.body(); boost::json::object request; std::string responseStr = "";