aboutsummaryrefslogtreecommitdiff
path: root/src/or/connection.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2008-03-17 04:07:51 +0000
committerNick Mathewson <nickm@torproject.org>2008-03-17 04:07:51 +0000
commite6b617bf0555054e5a3e20748ef27dfd9e75af13 (patch)
treed46e5cb7ccf009de073de94146d68610faadb773 /src/or/connection.c
parentc59f66709d024dfb112d1f648b14aeec057e1308 (diff)
downloadtor-e6b617bf0555054e5a3e20748ef27dfd9e75af13.tar
tor-e6b617bf0555054e5a3e20748ef27dfd9e75af13.tar.gz
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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/connection.c b/src/or/connection.c
index 84cd26f2c..0665d0178 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);