diff options
author | Peter Palfrader <peter@palfrader.org> | 2005-10-17 16:21:42 +0000 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2005-10-17 16:21:42 +0000 |
commit | 0d9aedfcea6d9b9f2e36bcc6176da8ac0f31a9b0 (patch) | |
tree | b4e573d9050e828ba4bc6659f3db42f31a4667e7 /src/or/command.c | |
parent | bec2271029463b426a9c87330ff392b9807d62ec (diff) | |
download | tor-0d9aedfcea6d9b9f2e36bcc6176da8ac0f31a9b0.tar.gz tor-0d9aedfcea6d9b9f2e36bcc6176da8ac0f31a9b0.zip |
Downgrade a few INFO level logs to DEBUG again. Also add two or three new
logs in cases where a calling function's log was downgraded and we wouldn't
get any log message otherwise.
svn:r5263
Diffstat (limited to 'src/or/command.c')
-rw-r--r-- | src/or/command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/command.c b/src/or/command.c index acb7cda05e..72bcaf5578 100644 --- a/src/or/command.c +++ b/src/or/command.c @@ -283,7 +283,7 @@ command_process_relay_cell(cell_t *cell, connection_t *conn) circ = circuit_get_by_circid_orconn(cell->circ_id, conn); if (!circ) { - log_fn(LOG_INFO,"unknown circuit %d on connection from %s:%d. Dropping.", + log_fn(LOG_DEBUG,"unknown circuit %d on connection from %s:%d. Dropping.", cell->circ_id, conn->address, conn->port); return; } |