| Index: net/tools/quic/quic_client.cc
 | 
| diff --git a/net/tools/quic/quic_client.cc b/net/tools/quic/quic_client.cc
 | 
| index 299932dfb554eda6bbf8c9ebe6c93ef4f6406f1c..534c7c51e4afbee44ece805e16a7d9b37a1380e3 100644
 | 
| --- a/net/tools/quic/quic_client.cc
 | 
| +++ b/net/tools/quic/quic_client.cc
 | 
| @@ -243,7 +243,7 @@ void QuicClient::OnEvent(int fd, EpollEvent* event) {
 | 
|      session_->connection()->OnCanWrite();
 | 
|    }
 | 
|    if (event->in_events & EPOLLERR) {
 | 
| -    DLOG(INFO) << "Epollerr";
 | 
| +    DVLOG(0) << "Epollerr";
 | 
|    }
 | 
|  }
 | 
|  
 | 
| @@ -310,11 +310,11 @@ bool QuicClient::ReadAndProcessPacket() {
 | 
|    QuicGuid packet_guid;
 | 
|  
 | 
|    if (!QuicFramer::ReadGuidFromPacket(packet, &packet_guid)) {
 | 
| -    DLOG(INFO) << "Could not read GUID from packet";
 | 
| +    DVLOG(0) << "Could not read GUID from packet";
 | 
|      return true;
 | 
|    }
 | 
|    if (packet_guid != our_guid) {
 | 
| -    DLOG(INFO) << "Ignoring packet from unexpected GUID: "
 | 
| +    DVLOG(0) << "Ignoring packet from unexpected GUID: "
 | 
|                 << packet_guid << " instead of " << our_guid;
 | 
|      return true;
 | 
|    }
 | 
| 
 |