| Index: net/tools/quic/quic_server.cc
 | 
| diff --git a/net/tools/quic/quic_server.cc b/net/tools/quic/quic_server.cc
 | 
| index d4aeedbb46b9e7702d7c88359ad3e39bee837566..f3980b090e8d2f93c7b24d6cf749753853b2836f 100644
 | 
| --- a/net/tools/quic/quic_server.cc
 | 
| +++ b/net/tools/quic/quic_server.cc
 | 
| @@ -131,7 +131,7 @@ bool QuicServer::Listen(const IPEndPoint& address) {
 | 
|      return false;
 | 
|    }
 | 
|  
 | 
| -  LOG(INFO) << "Listening on " << address.ToString();
 | 
| +  VLOG(0) << "Listening on " << address.ToString();
 | 
|    if (port_ == 0) {
 | 
|      SockaddrStorage storage;
 | 
|      IPEndPoint server_address;
 | 
| @@ -141,7 +141,7 @@ bool QuicServer::Listen(const IPEndPoint& address) {
 | 
|        return false;
 | 
|      }
 | 
|      port_ = server_address.port();
 | 
| -    LOG(INFO) << "Kernel assigned port is " << port_;
 | 
| +    VLOG(0) << "Kernel assigned port is " << port_;
 | 
|    }
 | 
|  
 | 
|    epoll_server_.RegisterFD(fd_, this, kEpollFlags);
 | 
| 
 |