summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/or/dns.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/dns.c b/src/or/dns.c
index 8c5c7bc4e2..ff02efc050 100644
--- a/src/or/dns.c
+++ b/src/or/dns.c
@@ -136,7 +136,8 @@ static void purge_expired_resolves(uint32_t now) {
*/
while (oldest_cached_resolve && (oldest_cached_resolve->expire < now)) {
resolve = oldest_cached_resolve;
- log(LOG_DEBUG,"Forgetting old cached resolve (expires %lu)", (unsigned long)resolve->expire);
+ log(LOG_DEBUG,"Forgetting old cached resolve (address %s, expires %lu)",
+ resolve->address, (unsigned long)resolve->expire);
if (resolve->state == CACHE_STATE_PENDING) {
log_fn(LOG_WARN,"Bug: Expiring a dns resolve ('%s') that's still pending. Forgot to cull it?", resolve->address);
tor_fragile_assert();