| Index: net/tools/quic/quic_server.cc
|
| diff --git a/net/tools/quic/quic_server.cc b/net/tools/quic/quic_server.cc
|
| index cdf7f6315ca61593d7772ae50f1a68fd5c8842a9..472f2b8c058794d1eaafb336415ffc796a8d6685 100644
|
| --- a/net/tools/quic/quic_server.cc
|
| +++ b/net/tools/quic/quic_server.cc
|
| @@ -133,7 +133,7 @@ bool QuicServer::Listen(const IPEndPoint& address) {
|
| return false;
|
| }
|
|
|
| - LOG(INFO) << "Listening on " << address.ToString();
|
| + DVLOG(1) << "Listening on " << address.ToString();
|
| if (port_ == 0) {
|
| SockaddrStorage storage;
|
| IPEndPoint server_address;
|
| @@ -143,7 +143,7 @@ bool QuicServer::Listen(const IPEndPoint& address) {
|
| return false;
|
| }
|
| port_ = server_address.port();
|
| - LOG(INFO) << "Kernel assigned port is " << port_;
|
| + DVLOG(1) << "Kernel assigned port is " << port_;
|
| }
|
|
|
| epoll_server_.RegisterFD(fd_, this, kEpollFlags);
|
| @@ -172,7 +172,7 @@ void QuicServer::OnEvent(int fd, EpollEvent* event) {
|
| event->out_ready_mask = 0;
|
|
|
| if (event->in_events & EPOLLIN) {
|
| - LOG(ERROR) << "EPOLLIN";
|
| + DVLOG(1) << "EPOLLIN";
|
| bool read = true;
|
| while (read) {
|
| read = ReadAndDispatchSinglePacket(
|
|
|