mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-24 22:58:50 +01:00
Merge branch 'ticket24097_032' into maint-0.3.2
This commit is contained in:
commit
0571015819
2 changed files with 7 additions and 2 deletions
4
changes/ticket24097
Normal file
4
changes/ticket24097
Normal file
|
@ -0,0 +1,4 @@
|
|||
o Minor features (logging):
|
||||
- Downgrade a pair of log messages that could occur when an exit's
|
||||
resolver gave us an unusual (but not forbidden) response.
|
||||
Closes ticket 24097.
|
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue