diff options
author | Roger Dingledine <arma@torproject.org> | 2004-01-30 19:31:39 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-01-30 19:31:39 +0000 |
commit | afdaff63ef6c81bdd7a1bec49b63e4571d5987b7 (patch) | |
tree | 945bbddf1e38464ffb8cd23a04f6eed6ad2a3725 /src/or/onion.c | |
parent | b42b16357f4d7e0306bdc98804d08527134f7969 (diff) | |
download | tor-afdaff63ef6c81bdd7a1bec49b63e4571d5987b7.tar.gz tor-afdaff63ef6c81bdd7a1bec49b63e4571d5987b7.zip |
turn some knobs, add more debugging
svn:r1023
Diffstat (limited to 'src/or/onion.c')
-rw-r--r-- | src/or/onion.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/onion.c b/src/or/onion.c index 2f13458e46..3912c450e7 100644 --- a/src/or/onion.c +++ b/src/or/onion.c @@ -475,7 +475,8 @@ int onion_extend_cpath(crypt_path_t **head_ptr, cpath_build_state_t *state, rout add_nickname_list_to_smartlist(excludednodes,options.ExcludedNodes); if(cur_len == state->desired_path_len - 1) { /* Picking last node */ - log_fn(LOG_DEBUG, "Contemplating last hop: choice already made."); + log_fn(LOG_DEBUG, "Contemplating last hop: choice already made: %s", + state->chosen_exit); choice = router_get_by_nickname(state->chosen_exit); if(!choice) { log_fn(LOG_WARN,"Our chosen exit %s is no longer in the directory? Failing.", |