Compare commits

..

1 Commits

Author SHA1 Message Date
flamingcow
0ba446bacb Log usage with clearer title 2019-05-11 21:58:14 -07:00
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);