| Index: net/tools/quic/quic_server_session.cc
 | 
| diff --git a/net/tools/quic/quic_server_session.cc b/net/tools/quic/quic_server_session.cc
 | 
| index bea957c86bf7c02ef6f786f6ad4b6aaf1ec12331..acaf56caa267382984f48acbf5205d5dd6f15d6b 100644
 | 
| --- a/net/tools/quic/quic_server_session.cc
 | 
| +++ b/net/tools/quic/quic_server_session.cc
 | 
| @@ -40,12 +40,12 @@ void QuicServerSession::OnConnectionClosed(QuicErrorCode error,
 | 
|  
 | 
|  bool QuicServerSession::ShouldCreateIncomingReliableStream(QuicStreamId id) {
 | 
|    if (id % 2 == 0) {
 | 
| -    DLOG(INFO) << "Invalid incoming even stream_id:" << id;
 | 
| +    DVLOG(0) << "Invalid incoming even stream_id:" << id;
 | 
|      connection()->SendConnectionClose(QUIC_INVALID_STREAM_ID);
 | 
|      return false;
 | 
|    }
 | 
|    if (GetNumOpenStreams() >= get_max_open_streams()) {
 | 
| -    DLOG(INFO) << "Failed to create a new incoming stream with id:" << id
 | 
| +    DVLOG(0) << "Failed to create a new incoming stream with id:" << id
 | 
|                 << " Already " << GetNumOpenStreams() << " open.";
 | 
|      connection()->SendConnectionClose(QUIC_TOO_MANY_OPEN_STREAMS);
 | 
|      return false;
 | 
| 
 |