Skip to content

Commit

Permalink
S3Simulator: log HTTP requests at TRACE level, not NOTICE
Browse files Browse the repository at this point in the history
We don't want to see all of them! They are no longer high priority messages.
  • Loading branch information
qris committed Jun 20, 2019
1 parent a8ab832 commit 312afed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/httpserver/S3Simulator.cpp
Expand Up @@ -457,7 +457,7 @@ void S3Simulator::Handle(HTTPRequest &rRequest, HTTPResponse &rResponse)
SendInternalErrorResponse(s.str().c_str(), rResponse);
}

BOX_NOTICE(rResponse.GetResponseCode() << " " << rRequest.GetMethodName() << " " <<
BOX_TRACE(rResponse.GetResponseCode() << " " << rRequest.GetMethodName() << " " <<
rRequest.GetRequestURI(true)); // with_parameters_for_get_request

return;
Expand Down

0 comments on commit 312afed

Please sign in to comment.