| Index: net/tools/quic/platform/impl/quic_socket_utils_test.cc
|
| diff --git a/net/tools/quic/platform/impl/quic_socket_utils_test.cc b/net/tools/quic/platform/impl/quic_socket_utils_test.cc
|
| index 58fd70b411c6b3e409d1f5ca8276a5aea1a5091f..899d1b8e81211c93ed133a9fad4a90f74e0e8a07 100644
|
| --- a/net/tools/quic/platform/impl/quic_socket_utils_test.cc
|
| +++ b/net/tools/quic/platform/impl/quic_socket_utils_test.cc
|
| @@ -8,7 +8,6 @@
|
|
|
| #include <array>
|
|
|
| -#include "net/quic/platform/api/quic_logging.h"
|
| #include "net/quic/platform/api/quic_socket_address.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| @@ -64,21 +63,21 @@
|
| bind_addr_size = sizeof(struct sockaddr_in6);
|
| break;
|
| case IpAddressFamily::IP_UNSPEC:
|
| - QUIC_LOG(FATAL) << "Unspecified IP address family";
|
| + LOG(FATAL) << "Unspecified IP address family";
|
| }
|
|
|
| int rc = bind(fd, reinterpret_cast<sockaddr*>(&bind_addr_native),
|
| bind_addr_size);
|
| if (rc != 0) {
|
| - QUIC_LOG(ERROR) << "Failed to bind socket to " << address.ToString()
|
| - << ": " << strerror(errno);
|
| + LOG(ERROR) << "Failed to bind socket to " << address.ToString() << ": "
|
| + << strerror(errno);
|
| return bound_address;
|
| }
|
|
|
| rc = bound_address.FromSocket(fd);
|
| if (rc != 0) {
|
| - QUIC_LOG(ERROR) << "Failed to get bound socket address from fd: "
|
| - << strerror(errno);
|
| + LOG(ERROR) << "Failed to get bound socket address from fd: "
|
| + << strerror(errno);
|
| bound_address = QuicSocketAddress();
|
| }
|
| return bound_address;
|
|
|