mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
clickhouse: added logging of OLAP requets body [#CONV-6318].
This commit is contained in:
parent
1dc0831102
commit
c984d9b437
@ -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());
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user