diff options
author | Roger Dingledine <arma@torproject.org> | 2005-10-17 00:35:53 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-10-17 00:35:53 +0000 |
commit | 03dcef4c78b029f7345c69f7f5d59338198bf2e5 (patch) | |
tree | 5f1f9a35df35f236d9c3cfe50b159c9360a88c75 /src/or/relay.c | |
parent | aca6fb5f5f3875a9e51cef8c60a45750944e84eb (diff) | |
download | tor-03dcef4c78b029f7345c69f7f5d59338198bf2e5.tar.gz tor-03dcef4c78b029f7345c69f7f5d59338198bf2e5.zip |
start the process of reducing clutter in server logs
svn:r5253
Diffstat (limited to 'src/or/relay.c')
-rw-r--r-- | src/or/relay.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/relay.c b/src/or/relay.c index bad68e4846..f78eb1be08 100644 --- a/src/or/relay.c +++ b/src/or/relay.c @@ -193,7 +193,7 @@ circuit_receive_relay_cell(cell_t *cell, circuit_t *circ, int cell_direction) } return 0; } - log_fn(LOG_WARN,"Didn't recognize cell, but circ stops here! Closing circ."); + log_fn(LOG_PROTOCOL_WARN,"Didn't recognize cell, but circ stops here! Closing circ."); return -1; } @@ -429,7 +429,7 @@ connection_edge_send_command(connection_t *fromconn, circuit_t *circ, } if (!circ) { - log_fn(LOG_WARN,"no circ. Closing conn."); + log_fn(LOG_INFO,"no circ. Closing conn."); tor_assert(fromconn); if (fromconn->type == CONN_TYPE_AP) { connection_mark_unattached_ap(fromconn, END_STREAM_REASON_INTERNAL); |