| Index: net/quic/core/quic_server_session_base.cc
 | 
| diff --git a/net/quic/core/quic_server_session_base.cc b/net/quic/core/quic_server_session_base.cc
 | 
| index d07eb835dd2400856548d4d8df66a3753e00ac98..ca515d82808d4dda8e6244420936dd0567bf46c7 100644
 | 
| --- a/net/quic/core/quic_server_session_base.cc
 | 
| +++ b/net/quic/core/quic_server_session_base.cc
 | 
| @@ -4,13 +4,13 @@
 | 
|  
 | 
|  #include "net/quic/core/quic_server_session_base.h"
 | 
|  
 | 
| +#include "base/logging.h"
 | 
|  #include "net/quic/core/proto/cached_network_parameters.pb.h"
 | 
|  #include "net/quic/core/quic_connection.h"
 | 
|  #include "net/quic/core/quic_flags.h"
 | 
|  #include "net/quic/core/quic_spdy_session.h"
 | 
|  #include "net/quic/core/quic_stream.h"
 | 
|  #include "net/quic/platform/api/quic_bug_tracker.h"
 | 
| -#include "net/quic/platform/api/quic_logging.h"
 | 
|  
 | 
|  using std::string;
 | 
|  
 | 
| @@ -148,8 +148,8 @@
 | 
|    }
 | 
|  
 | 
|    bandwidth_estimate_sent_to_client_ = new_bandwidth_estimate;
 | 
| -  QUIC_DVLOG(1) << "Server: sending new bandwidth estimate (KBytes/s): "
 | 
| -                << bandwidth_estimate_sent_to_client_.ToKBytesPerSecond();
 | 
| +  DVLOG(1) << "Server: sending new bandwidth estimate (KBytes/s): "
 | 
| +           << bandwidth_estimate_sent_to_client_.ToKBytesPerSecond();
 | 
|  
 | 
|    // Include max bandwidth in the update.
 | 
|    QuicBandwidth max_bandwidth_estimate =
 | 
| @@ -200,7 +200,7 @@
 | 
|    }
 | 
|  
 | 
|    if (id % 2 == 0) {
 | 
| -    QUIC_DLOG(INFO) << "Invalid incoming even stream_id:" << id;
 | 
| +    DVLOG(1) << "Invalid incoming even stream_id:" << id;
 | 
|      connection()->CloseConnection(
 | 
|          QUIC_INVALID_STREAM_ID, "Client created even numbered stream",
 | 
|          ConnectionCloseBehavior::SEND_CONNECTION_CLOSE_PACKET);
 | 
| 
 |