HttpServerConnection: remove duplicate ")" from a log message

The commit 5c32a5a7dc, which introduced it, clearly shows that the other ")" already existed legitimately.
This commit is contained in:
Alexander Aleksandrovič Klimov 2024-01-16 16:31:00 +01:00 committed by GitHub
parent 2c9117b4f7
commit 6a4cb5c12c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -543,7 +543,7 @@ void HttpServerConnection::ProcessMessages(boost::asio::yield_context yc)
logMsg << "Request: " << request.method_string() << ' ' << request.target()
<< " (from " << m_PeerAddress
<< "), user: " << (authenticatedUser ? authenticatedUser->GetName() : "<unauthenticated>")
<< ", user: " << (authenticatedUser ? authenticatedUser->GetName() : "<unauthenticated>")
<< ", agent: " << request[http::field::user_agent]; //operator[] - Returns the value for a field, or "" if it does not exist.
Defer addRespCode ([&response, &logMsg]() {