From: Roger Dingledine Date: Mon, 26 Dec 2005 22:42:22 +0000 (+0000) Subject: disambiguate some debug entries X-Git-Tag: tor-0.1.1.11-alpha~130 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b038dc9ecc6e81a1a0da75d02b156fbd77688232;p=thirdparty%2Ftor.git disambiguate some debug entries svn:r5654 --- diff --git a/src/or/cpuworker.c b/src/or/cpuworker.c index da1e7260f3..de5b33a4da 100644 --- a/src/or/cpuworker.c +++ b/src/or/cpuworker.c @@ -329,7 +329,7 @@ spawn_cpuworker(void) fd = fdarray[0]; spawn_func(cpuworker_main, (void*)fdarray); - debug(LD_OR,"just spawned a worker."); + debug(LD_OR,"just spawned a cpu worker."); #ifndef TOR_IS_MULTITHREADED tor_close_socket(fdarray[1]); /* don't need the worker's side of the pipe */ tor_free(fdarray); diff --git a/src/or/dns.c b/src/or/dns.c index 6b0043cdc5..ce63d783bb 100644 --- a/src/or/dns.c +++ b/src/or/dns.c @@ -889,7 +889,7 @@ spawn_dnsworker(void) fd = fdarray[0]; /* We copy this out here, since dnsworker_main may free * fdarray */ spawn_func(dnsworker_main, (void*)fdarray); - debug(LD_EXIT,"just spawned a worker."); + debug(LD_EXIT,"just spawned a dns worker."); #ifndef TOR_IS_MULTITHREADED tor_close_socket(fdarray[1]); /* don't need the worker's side of the pipe */ tor_free(fdarray);