Enable the HTTP request body debug log entry for release builds

fixes #4282
This commit is contained in:
Michael Friedrich 2018-10-09 12:55:53 +02:00
parent 051b3ba9b7
commit 73263b7702
1 changed files with 1 additions and 2 deletions

View File

@ -35,10 +35,9 @@ Dictionary::Ptr HttpUtility::FetchRequestParameters(HttpRequest& request)
body += String(buffer, buffer + count);
if (!body.IsEmpty()) {
#ifdef I2_DEBUG
Log(LogDebug, "HttpUtility")
<< "Request body: '" << body << "'";
#endif /* I2_DEBUG */
result = JsonDecode(body);
}