MCPcopy Create free account
hub / github.com/apache/mesos / logResponse

Function logResponse

src/common/http.cpp:1449–1460  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1447
1448
1449void logResponse(
1450 const process::http::Request& request,
1451 const process::http::Response& response)
1452{
1453 LOG(INFO) << "HTTP " << request.method << " for " << request.url
1454 << (request.client.isSome()
1455 ? " from " + stringify(request.client.get())
1456 : "")
1457 << ": '" << response.status << "'"
1458 << " after " << (process::Clock::now() - request.received).ms()
1459 << Milliseconds::units();
1460}
1461
1462} // namespace mesos {

Callers 3

initializeMethod · 0.85
initializeMethod · 0.85
initializeMethod · 0.85

Calls 4

msMethod · 0.80
stringifyFunction · 0.50
isSomeMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected