diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-03-17 04:07:51 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-03-17 04:07:51 +0000 |
commit | e6b617bf0555054e5a3e20748ef27dfd9e75af13 (patch) | |
tree | d46e5cb7ccf009de073de94146d68610faadb773 /src/or/connection.c | |
parent | c59f66709d024dfb112d1f648b14aeec057e1308 (diff) | |
download | tor-e6b617bf0555054e5a3e20748ef27dfd9e75af13.tar.gz tor-e6b617bf0555054e5a3e20748ef27dfd9e75af13.zip |
r18872@catbus: nickm | 2008-03-16 23:56:48 -0400
Only dump all guard node status to the log when the guard node status actually changes. Downgrade the 4 most common remaining INFO log messages to DEBUG.
svn:r14069
Diffstat (limited to 'src/or/connection.c')
-rw-r--r-- | src/or/connection.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/connection.c b/src/or/connection.c index 84cd26f2c0..0665d0178e 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -1965,14 +1965,14 @@ connection_read_to_buf(connection_t *conn, int *max_to_read) switch (result) { case TOR_TLS_CLOSE: case TOR_TLS_ERROR_IO: - log_info(LD_NET,"TLS connection closed %son read. Closing. " + log_debug(LD_NET,"TLS connection closed %son read. Closing. " "(Nickname %s, address %s", result == TOR_TLS_CLOSE ? "cleanly " : "", or_conn->nickname ? or_conn->nickname : "not set", conn->address); return result; CASE_TOR_TLS_ERROR_ANY_NONIO: - log_info(LD_NET,"tls error [%s]. breaking (nickname %s, address %s).", + log_debug(LD_NET,"tls error [%s]. breaking (nickname %s, address %s).", tor_tls_err_to_string(result), or_conn->nickname ? or_conn->nickname : "not set", conn->address); |