1
0
Fork 0

fixed missing double quote

This commit is contained in:
Frank Celler 2017-02-27 14:48:34 +01:00
parent 664acb8695
commit da27597ff4
1 changed files with 1 additions and 1 deletions

View File

@ -570,7 +570,7 @@ void HttpCommTask::processRequest(std::unique_ptr<HttpRequest> request) {
<< "\"http-request-begin\",\"" << (void*)this << "\",\""
<< _connectionInfo.clientAddress << "\",\""
<< HttpRequest::translateMethod(_requestType) << "\",\""
<< HttpRequest::translateVersion(_protocolVersion) << "\"," << _fullUrl
<< HttpRequest::translateVersion(_protocolVersion) << "\",\"" << _fullUrl
<< "\"";
std::string const& body = request->body();