fix(HttpRequest): simplify debug log message for waiting data in request line

This commit is contained in:
Quinten Mennen 2025-09-24 15:54:48 +02:00
parent 64f5c39fb3
commit 33c82490f0

View File

@ -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);