Index: net/tools/quic/quic_server.cc |
diff --git a/net/tools/quic/quic_server.cc b/net/tools/quic/quic_server.cc |
index 3728fd80eb67967c6bc35f037fc71dd5291299e3..36a9d4b9d07274071238cc251c340c7a60bd65eb 100644 |
--- a/net/tools/quic/quic_server.cc |
+++ b/net/tools/quic/quic_server.cc |
@@ -170,14 +170,12 @@ void QuicServer::OnEvent(int fd, EpollEvent* event) { |
} |
} |
if (event->in_events & EPOLLOUT) { |
- LOG(INFO) << "Epollout"; |
bool can_write_more = dispatcher_->OnCanWrite(); |
if (can_write_more) { |
event->out_ready_mask |= EPOLLOUT; |
} |
} |
if (event->in_events & EPOLLERR) { |
- LOG(INFO) << "Epollerr"; |
} |
} |