From 8308a379086a82126f685f3d8668e48b0453880d Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 29 Sep 2006 22:33:34 +0000 Subject: r9023@Kushana: nickm | 2006-09-29 17:27:24 -0400 Make distinct all non-bug messages at notice or higher that appear 3 or more times. svn:r8541 --- src/or/dns.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/or/dns.c') diff --git a/src/or/dns.c b/src/or/dns.c index 1a955cd2aa..bc8d9ce2f1 100644 --- a/src/or/dns.c +++ b/src/or/dns.c @@ -1308,7 +1308,7 @@ spawn_dnsworker(void) conn->address = tor_strdup(""); if (connection_add(conn) < 0) { /* no space, forget it */ - log_warn(LD_NET,"connection_add failed. Giving up."); + log_warn(LD_NET,"connection_add for dnsworker failed. Giving up."); connection_free(conn); /* this closes fd */ return -1; } @@ -1362,7 +1362,7 @@ spawn_enough_dnsworkers(void) while (num_dnsworkers < num_dnsworkers_needed) { if (spawn_dnsworker() < 0) { - log_warn(LD_EXIT,"Spawn failed. Will try again later."); + log_warn(LD_EXIT,"DNS worker spawn failed. Will try again later."); return -1; } num_dnsworkers++; -- cgit v1.2.3-54-g00ecf