| Index: net/tools/quic/quic_client_base.cc
 | 
| diff --git a/net/tools/quic/quic_client_base.cc b/net/tools/quic/quic_client_base.cc
 | 
| index b1ada21d6c592e8a1f37e98d03e0eaf73347b93a..dc07949d3597a465a7cd93d7e7818c5de04a03aa 100644
 | 
| --- a/net/tools/quic/quic_client_base.cc
 | 
| +++ b/net/tools/quic/quic_client_base.cc
 | 
| @@ -7,6 +7,7 @@
 | 
|  #include "net/quic/core/crypto/quic_random.h"
 | 
|  #include "net/quic/core/quic_server_id.h"
 | 
|  #include "net/quic/core/spdy_utils.h"
 | 
| +#include "net/quic/platform/api/quic_logging.h"
 | 
|  #include "net/quic/platform/api/quic_text_utils.h"
 | 
|  
 | 
|  using base::StringPiece;
 | 
| @@ -68,7 +69,7 @@ void QuicClientBase::OnClose(QuicSpdyStream* stream) {
 | 
|      auto status = response_headers.find(":status");
 | 
|      if (status == response_headers.end() ||
 | 
|          !StringToInt(status->second, &latest_response_code_)) {
 | 
| -      LOG(ERROR) << "Invalid response headers";
 | 
| +      QUIC_LOG(ERROR) << "Invalid response headers";
 | 
|      }
 | 
|      latest_response_headers_ = response_headers.DebugString();
 | 
|      latest_response_header_block_ = response_headers.Clone();
 | 
| @@ -271,8 +272,8 @@ bool QuicClientBase::WaitForEvents() {
 | 
|    if (!connected() &&
 | 
|        session()->error() == QUIC_CRYPTO_HANDSHAKE_STATELESS_REJECT) {
 | 
|      DCHECK(FLAGS_quic_reloadable_flag_enable_quic_stateless_reject_support);
 | 
| -    DVLOG(1) << "Detected stateless reject while waiting for events.  "
 | 
| -             << "Attempting to reconnect.";
 | 
| +    QUIC_DLOG(INFO) << "Detected stateless reject while waiting for events.  "
 | 
| +                    << "Attempting to reconnect.";
 | 
|      Connect();
 | 
|    }
 | 
|  
 | 
| @@ -316,7 +317,7 @@ bool QuicClientBase::WaitForCryptoHandshakeConfirmed() {
 | 
|    }
 | 
|  
 | 
|    // If the handshake fails due to a timeout, the connection will be closed.
 | 
| -  LOG_IF(ERROR, !connected()) << "Handshake with server failed.";
 | 
| +  QUIC_LOG_IF(ERROR, !connected()) << "Handshake with server failed.";
 | 
|    return connected();
 | 
|  }
 | 
|  
 | 
| 
 |