fix(HttpRequest): simplify debug log message for waiting data in request line
This commit is contained in:
parent
64f5c39fb3
commit
33c82490f0
@ -98,7 +98,7 @@ bool HttpRequest::parseBufferforRequestLine()
|
|||||||
size_t pos = buffer_.find(Http::Protocol::CRLF);
|
size_t pos = buffer_.find(Http::Protocol::CRLF);
|
||||||
if (pos == std::string::npos)
|
if (pos == std::string::npos)
|
||||||
{
|
{
|
||||||
Log::debug("RequestLine waiting for more data : " + LOCATION);
|
Log::debug("RequestLine waiting for more data");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
std::string requestLine_ = buffer_.substr(0, pos);
|
std::string requestLine_ = buffer_.substr(0, pos);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user