clickhouse: added logging of OLAP requets body [#CONV-6318].

This commit is contained in:
Michael Kolupaev 2013-01-18 14:24:11 +00:00
parent 1dc0831102
commit c984d9b437

View File

@ -65,6 +65,9 @@ namespace DB
try
{
LOG_TRACE(log, "Request URI: " << request.getURI());
std::stringstream request_body;
request_body << request.stream().rdbuf();
LOG_TRACE(log, "Request body: " << request_body.str());
processQuery(response, request.stream());