diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-11-17 08:35:04 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-11-17 08:35:04 -0500 |
commit | 4ef70ff389917f99cbee054bba78872b0b91a556 (patch) | |
tree | d94085cd2ede8e19ae49d11c26923d523d973e0b /src/or/dns.c | |
parent | 4b56df9874cb67d1a9e72626bbfc69bbd40b593b (diff) | |
parent | 0571015819317f6b52416d8023a99ee5a8f31dee (diff) | |
download | tor-4ef70ff389917f99cbee054bba78872b0b91a556.tar.gz tor-4ef70ff389917f99cbee054bba78872b0b91a556.zip |
Merge branch 'maint-0.3.2'
Diffstat (limited to 'src/or/dns.c')
-rw-r--r-- | src/or/dns.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/or/dns.c b/src/or/dns.c index c992c8c358..f140051e81 100644 --- a/src/or/dns.c +++ b/src/or/dns.c @@ -1578,10 +1578,11 @@ evdns_callback(int result, char type, int count, int ttl, void *addresses, escaped_safe_str(hostname)); tor_free(escaped_address); } else if (count) { - log_warn(LD_EXIT, "eventdns returned only non-IPv4 answers for %s.", + log_info(LD_EXIT, "eventdns returned only unrecognized answer types " + " for %s.", escaped_safe_str(string_address)); } else { - log_warn(LD_BUG, "eventdns returned no addresses or error for %s!", + log_info(LD_EXIT, "eventdns returned no addresses or error for %s.", escaped_safe_str(string_address)); } } |