diff options
author | Nick Mathewson <nickm@torproject.org> | 2006-09-29 22:33:40 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2006-09-29 22:33:40 +0000 |
commit | 7d366f61cb1b2b9965b02479c751a6987f328b76 (patch) | |
tree | d65fbad59801acc40f9098aef1470a53ce0af426 /src/or/cpuworker.c | |
parent | 8308a379086a82126f685f3d8668e48b0453880d (diff) | |
download | tor-7d366f61cb1b2b9965b02479c751a6987f328b76.tar.gz tor-7d366f61cb1b2b9965b02479c751a6987f328b76.zip |
r9025@Kushana: nickm | 2006-09-29 18:33:13 -0400
Differentiate more duplicated log entries
svn:r8542
Diffstat (limited to 'src/or/cpuworker.c')
-rw-r--r-- | src/or/cpuworker.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/cpuworker.c b/src/or/cpuworker.c index 5fae08f668..0c33c79876 100644 --- a/src/or/cpuworker.c +++ b/src/or/cpuworker.c @@ -110,7 +110,7 @@ cpuworkers_rotate(void) int connection_cpu_reached_eof(connection_t *conn) { - log_warn(LD_GENERAL,"Read eof. Worker died unexpectedly."); + log_warn(LD_GENERAL,"Read eof. CPU worker died unexpectedly."); if (conn->state != CPUWORKER_STATE_IDLE) { /* the circ associated with this cpuworker will have to wait until * it gets culled in run_connection_housekeeping(), since we have @@ -322,7 +322,7 @@ spawn_cpuworker(void) fdarray = tor_malloc(sizeof(int)*2); if ((err = tor_socketpair(AF_UNIX, SOCK_STREAM, 0, fdarray)) < 0) { - log_warn(LD_NET, "Couldn't construct socketpair: %s", + log_warn(LD_NET, "Couldn't construct socketpair for cpuworker: %s", tor_socket_strerror(-err)); tor_free(fdarray); return -1; |