diff options
author | Roger Dingledine <arma@torproject.org> | 2005-12-27 08:38:22 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-12-27 08:38:22 +0000 |
commit | 25fcb5fa9cc33c8305bf2a778a706d8dc0f7c24b (patch) | |
tree | e79b9bbd243f9cacc06a9aa8647d93bd523df47b /src/or/circuitbuild.c | |
parent | 976bf064639b366e9d3cba1e8e0ef31802d3a6c1 (diff) | |
download | tor-25fcb5fa9cc33c8305bf2a778a706d8dc0f7c24b.tar.gz tor-25fcb5fa9cc33c8305bf2a778a706d8dc0f7c24b.zip |
helpful log
svn:r5665
Diffstat (limited to 'src/or/circuitbuild.c')
-rw-r--r-- | src/or/circuitbuild.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 7cec1cc253..af4e207ff5 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -1916,6 +1916,11 @@ helper_nodes_set_status_from_directory(void) helper->down_since = 0; } } + info(LD_CIRC, "Summary: Helper '%s' is %s, %s, and %s.", + helper->nickname, + helper->down_since ? "down" : "up", + helper->unlisted_since ? "unlisted" : "listed", + helper_is_live(helper, 0, 1) ? "live" : "not live"); }); if (remove_dead_helpers()) |