| Index: net/tools/quic/quic_server_test.cc
|
| diff --git a/net/tools/quic/quic_server_test.cc b/net/tools/quic/quic_server_test.cc
|
| index 8c6584eb46bac8c4142df5b031b8fd0ff00b67c3..1485d09b831726ab752cf32d4d9eee04be64c34d 100644
|
| --- a/net/tools/quic/quic_server_test.cc
|
| +++ b/net/tools/quic/quic_server_test.cc
|
| @@ -6,7 +6,6 @@
|
|
|
| #include "net/quic/core/crypto/quic_random.h"
|
| #include "net/quic/core/quic_utils.h"
|
| -#include "net/quic/platform/api/quic_logging.h"
|
| #include "net/quic/platform/api/quic_socket_address.h"
|
| #include "net/quic/test_tools/crypto_test_utils.h"
|
| #include "net/quic/test_tools/mock_quic_dispatcher.h"
|
| @@ -88,7 +87,7 @@
|
| ASSERT_TRUE(QuicServerPeer::SetSmallSocket(&server_));
|
|
|
| if (!server_.overflow_supported()) {
|
| - QUIC_LOG(WARNING) << "Overflow not supported. Not testing.";
|
| + LOG(WARNING) << "Overflow not supported. Not testing.";
|
| return;
|
| }
|
| }
|
| @@ -134,7 +133,7 @@
|
| int rc = sendto(fd, buf, arraysize(buf), 0,
|
| reinterpret_cast<sockaddr*>(&storage), storage_size);
|
| if (rc < 0) {
|
| - QUIC_DLOG(INFO) << errno << " " << strerror(errno);
|
| + DVLOG(1) << errno << " " << strerror(errno);
|
| }
|
|
|
| while (more_chlos) {
|
|
|