diff options
Diffstat (limited to 'net/base/net_util.cc')
-rw-r--r-- | net/base/net_util.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/base/net_util.cc b/net/base/net_util.cc index 27621e6..45dc60c 100644 --- a/net/base/net_util.cc +++ b/net/base/net_util.cc @@ -1534,7 +1534,7 @@ std::string NetAddressToString(const struct addrinfo* net_address) { net_address->ai_addrlen, buffer, sizeof(buffer), NULL, 0, NI_NUMERICHOST); if (result != 0) { - DLOG(INFO) << "getnameinfo() failed with " << result; + DVLOG(1) << "getnameinfo() failed with " << result; buffer[0] = '\0'; } return std::string(buffer); @@ -1564,7 +1564,7 @@ std::string GetHostName() { char buffer[256]; int result = gethostname(buffer, sizeof(buffer)); if (result != 0) { - DLOG(INFO) << "gethostname() failed with " << result; + DVLOG(1) << "gethostname() failed with " << result; buffer[0] = '\0'; } return std::string(buffer); @@ -1819,7 +1819,7 @@ bool HaveOnlyLoopbackAddresses() { struct ifaddrs* interface_addr = NULL; int rv = getifaddrs(&interface_addr); if (rv != 0) { - DLOG(INFO) << "getifaddrs() failed with errno = " << errno; + DVLOG(1) << "getifaddrs() failed with errno = " << errno; return false; } |