]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
disambiguate some debug entries
authorRoger Dingledine <arma@torproject.org>
Mon, 26 Dec 2005 22:42:22 +0000 (22:42 +0000)
committerRoger Dingledine <arma@torproject.org>
Mon, 26 Dec 2005 22:42:22 +0000 (22:42 +0000)
svn:r5654

src/or/cpuworker.c
src/or/dns.c

index da1e7260f3ddeac89a223ebe3668806538d37b17..de5b33a4da4be64d6ddebefc636bfe45b0abc43b 100644 (file)
@@ -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);
index 6b0043cdc5528779216b74c333fd7f07cd654064..ce63d783bb7f388e7921ec39f1ddc4f256dff19e 100644 (file)
@@ -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);