Log usage with clearer title

This commit is contained in:
flamingcow
2019-05-11 21:58:14 -07:00
parent ec99454756
commit 0ba446bacb
2 changed files with 2 additions and 2 deletions

View File

@@ -112,7 +112,7 @@ void Server::ServeInt() {
usage_tracker.Stop(); usage_tracker.Stop();
PCHECK(close(listen_sock) == 0); PCHECK(close(listen_sock) == 0);
PCHECK(close(epoll_fd) == 0); PCHECK(close(epoll_fd) == 0);
usage_tracker.Log(); usage_tracker.Log("requests");
return; return;
} else { } else {
auto conn = static_cast<Connection*>(events[i].data.ptr); auto conn = static_cast<Connection*>(events[i].data.ptr);