| Index: net/quic/core/quic_versions.cc
|
| diff --git a/net/quic/core/quic_versions.cc b/net/quic/core/quic_versions.cc
|
| index 0eb2b6d5c4b8d21f3ac1e4a3f140b79716f578d3..bb02c4d86728679b169bf40d3b41cacc0f246cc7 100644
|
| --- a/net/quic/core/quic_versions.cc
|
| +++ b/net/quic/core/quic_versions.cc
|
| @@ -10,7 +10,6 @@
|
| #include "net/quic/core/quic_flags.h"
|
| #include "net/quic/core/quic_tag.h"
|
| #include "net/quic/core/quic_types.h"
|
| -#include "net/quic/platform/api/quic_logging.h"
|
|
|
| using base::StringPiece;
|
| using std::string;
|
| @@ -77,7 +76,7 @@
|
| default:
|
| // This shold be an ERROR because we should never attempt to convert an
|
| // invalid QuicVersion to be written to the wire.
|
| - QUIC_LOG(ERROR) << "Unsupported QuicVersion: " << version;
|
| + LOG(ERROR) << "Unsupported QuicVersion: " << version;
|
| return 0;
|
| }
|
| }
|
| @@ -89,8 +88,7 @@
|
| }
|
| }
|
| // Reading from the client so this should not be considered an ERROR.
|
| - QUIC_DLOG(INFO) << "Unsupported QuicTag version: "
|
| - << QuicTagToString(version_tag);
|
| + DVLOG(1) << "Unsupported QuicTag version: " << QuicTagToString(version_tag);
|
| return QUIC_VERSION_UNSUPPORTED;
|
| }
|
|
|
|
|