aboutsummaryrefslogtreecommitdiffhomepage
path: root/tdnet/td/net/GetHostByNameActor.cpp
diff options
context:
space:
mode:
authorlevlam <levlam@telegram.org>2019-02-04 17:02:21 +0300
committerlevlam <levlam@telegram.org>2019-02-04 17:02:21 +0300
commit0b7def873341ffff11f5f08516f1c9d634b6dac6 (patch)
treec830b0ec72a88eecf1085ce8162ae6f2ab0cd1f9 /tdnet/td/net/GetHostByNameActor.cpp
parentaab7300681343c28ec29195b137961372e17615e (diff)
Add dns_resolver log tag.
GitOrigin-RevId: 17fed9f8350bb49e18b875ed21290c7805875df6
Diffstat (limited to 'tdnet/td/net/GetHostByNameActor.cpp')
-rw-r--r--tdnet/td/net/GetHostByNameActor.cpp13
1 files changed, 8 insertions, 5 deletions
diff --git a/tdnet/td/net/GetHostByNameActor.cpp b/tdnet/td/net/GetHostByNameActor.cpp
index a76877c37..3208bbbe2 100644
--- a/tdnet/td/net/GetHostByNameActor.cpp
+++ b/tdnet/td/net/GetHostByNameActor.cpp
@@ -79,8 +79,9 @@ class GoogleDnsResolver : public Actor {
void on_result(Result<HttpQueryPtr> r_http_query) {
auto end_time = Time::now();
auto result = get_ip_address(std::move(r_http_query));
- LOG(WARNING) << "Init IPv" << (prefer_ipv6_ ? "6" : "4") << " host = " << host_ << " in " << end_time - begin_time_
- << " seconds to " << (result.is_ok() ? (PSLICE() << result.ok()) : CSlice("[invalid]"));
+ VLOG(dns_resolver) << "Init IPv" << (prefer_ipv6_ ? "6" : "4") << " host = " << host_ << " in "
+ << end_time - begin_time_ << " seconds to "
+ << (result.is_ok() ? (PSLICE() << result.ok()) : CSlice("[invalid]"));
promise_.set_result(std::move(result));
stop();
}
@@ -102,7 +103,7 @@ class NativeDnsResolver : public Actor {
auto begin_time = Time::now();
auto status = ip.init_host_port(host_, 0, prefer_ipv6_);
auto end_time = Time::now();
- LOG(WARNING) << "Init host = " << host_ << " in " << end_time - begin_time << " seconds to " << ip;
+ VLOG(dns_resolver) << "Init host = " << host_ << " in " << end_time - begin_time << " seconds to " << ip;
if (status.is_error()) {
promise_.set_error(std::move(status));
} else {
@@ -114,6 +115,8 @@ class NativeDnsResolver : public Actor {
} // namespace detail
+int VERBOSITY_NAME(dns_resolver) = VERBOSITY_NAME(DEBUG);
+
GetHostByNameActor::GetHostByNameActor(Options options) : options_(std::move(options)) {
CHECK(!options_.resolver_types.empty());
}
@@ -181,8 +184,8 @@ void GetHostByNameActor::on_query_result(std::string host, bool prefer_ipv6, Res
}
auto end_time = Time::now();
- LOG(WARNING) << "Init host = " << query.real_host << " in total of " << end_time - query.begin_time << " seconds to "
- << (result.is_ok() ? (PSLICE() << result.ok()) : CSlice("[invalid]"));
+ VLOG(dns_resolver) << "Init host = " << query.real_host << " in total of " << end_time - query.begin_time
+ << " seconds to " << (result.is_ok() ? (PSLICE() << result.ok()) : CSlice("[invalid]"));
auto promises = std::move(query.promises);
auto value_it = cache_[prefer_ipv6].find(host);