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/cpuworker.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/cpuworker.c')
-rw-r--r-- | src/or/cpuworker.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/cpuworker.c b/src/or/cpuworker.c index 5208d79397..a6ef430e61 100644 --- a/src/or/cpuworker.c +++ b/src/or/cpuworker.c @@ -163,7 +163,7 @@ connection_cpu_process_inbuf(connection_t *conn) circ = circuit_get_by_circid_orconn(circ_id, p_conn); if (success == 0) { - log_fn(LOG_INFO,"decoding onionskin failed. Closing."); + log_fn(LOG_DEBUG,"decoding onionskin failed. Closing."); if (circ) circuit_mark_for_close(circ); goto done_processing; @@ -266,7 +266,7 @@ cpuworker_main(void *data) if (onion_skin_server_handshake(question, onion_key, last_onion_key, reply_to_proxy, keys, CPATH_KEY_MATERIAL_LEN) < 0) { /* failure */ - log_fn(LOG_INFO,"onion_skin_server_handshake failed."); + log_fn(LOG_DEBUG,"onion_skin_server_handshake failed."); memset(buf,0,LEN_ONION_RESPONSE); /* send all zeros for failure */ } else { /* success */ |