diff options
author | Roger Dingledine <arma@torproject.org> | 2008-06-10 23:00:11 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2008-06-10 23:00:11 +0000 |
commit | 45cc25c0196aea33bfd207123cf2e128114dafd2 (patch) | |
tree | def4da10fb16bf5eba771fb3582e3227780b2a94 /src/or/connection_or.c | |
parent | 67a1658da505035c007d7bc7800e395777889a8e (diff) | |
download | tor-45cc25c0196aea33bfd207123cf2e128114dafd2.tar.gz tor-45cc25c0196aea33bfd207123cf2e128114dafd2.zip |
minor fixes and notes
svn:r15111
Diffstat (limited to 'src/or/connection_or.c')
-rw-r--r-- | src/or/connection_or.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/or/connection_or.c b/src/or/connection_or.c index 02921e1981..5a15bddbca 100644 --- a/src/or/connection_or.c +++ b/src/or/connection_or.c @@ -898,6 +898,8 @@ connection_or_set_state_open(or_connection_t *conn) * chose not to use it. (Otherwise * connection_about_to_close_connection() will call a big pile of * functions to indicate we shouldn't try it again.) */ + log_debug(LD_OR, "New entry guard was reachable, but closing this " + "connection so we can retry the earlier entry guards."); circuit_n_conn_done(conn, 0); return -1; } |