From 4eb3cf933003b595dc4a70fe6b3bfef5921c0406 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Tue, 26 Apr 2005 20:05:15 +0000 Subject: [PATCH] a bit more debug info svn:r4119 --- src/or/dns.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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();