| Index: net/tools/quic/quic_spdy_server_stream_base.cc
 | 
| diff --git a/net/tools/quic/quic_spdy_server_stream_base.cc b/net/tools/quic/quic_spdy_server_stream_base.cc
 | 
| index 4b68127775d04b55e47dd68be7fe23a9d8c3bc28..e84516899b5be4a0272b602ed52471b93a14a8a4 100644
 | 
| --- a/net/tools/quic/quic_spdy_server_stream_base.cc
 | 
| +++ b/net/tools/quic/quic_spdy_server_stream_base.cc
 | 
| @@ -5,6 +5,7 @@
 | 
|  #include "net/tools/quic/quic_spdy_server_stream_base.h"
 | 
|  
 | 
|  #include "net/quic/core/quic_error_codes.h"
 | 
| +#include "net/quic/platform/api/quic_logging.h"
 | 
|  
 | 
|  namespace net {
 | 
|  
 | 
| @@ -19,7 +20,7 @@ void QuicSpdyServerStreamBase::CloseWriteSide() {
 | 
|      // or RST.
 | 
|      DCHECK(fin_sent());
 | 
|      // Tell the peer to stop sending further data.
 | 
| -    DVLOG(0) << " Server: Send QUIC_STREAM_NO_ERROR on stream " << id();
 | 
| +    QUIC_DVLOG(0) << " Server: Send QUIC_STREAM_NO_ERROR on stream " << id();
 | 
|      Reset(QUIC_STREAM_NO_ERROR);
 | 
|    }
 | 
|  
 | 
| 
 |