diff options
author | Roger Dingledine <arma@torproject.org> | 2004-02-28 07:01:22 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-02-28 07:01:22 +0000 |
commit | dd632e697e6e7e96f755fab1a618e71fef169cdc (patch) | |
tree | 79b8f0d3823667921bf1ff064597d2632528e1ae /src/or/command.c | |
parent | a24b6e6d4fd9d65e9f0eef45f46720cd5007e175 (diff) | |
download | tor-dd632e697e6e7e96f755fab1a618e71fef169cdc.tar.gz tor-dd632e697e6e7e96f755fab1a618e71fef169cdc.zip |
clean up some log messages and severities
still plenty more left to clean
svn:r1158
Diffstat (limited to 'src/or/command.c')
-rw-r--r-- | src/or/command.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/command.c b/src/or/command.c index 0a3b91843f..cebf5cc26c 100644 --- a/src/or/command.c +++ b/src/or/command.c @@ -32,7 +32,7 @@ static void command_time_process_cell(cell_t *cell, connection_t *conn, tor_gettimeofday(&end); time_passed = tv_udiff(&start, &end) ; - if (time_passed > 5000) { /* more than 5ms */ + if (time_passed > 10000) { /* more than 10ms */ log_fn(LOG_INFO,"That call just took %ld ms.",time_passed/1000); } *time += time_passed; @@ -112,7 +112,7 @@ static void command_process_create_cell(cell_t *cell, connection_t *conn) { circuit_close(circ); return; } - log_fn(LOG_INFO,"success: handed off onionskin."); + log_fn(LOG_DEBUG,"success: handed off onionskin."); } static void command_process_created_cell(cell_t *cell, connection_t *conn) { @@ -145,7 +145,7 @@ static void command_process_created_cell(cell_t *cell, connection_t *conn) { return; } } else { /* pack it into an extended relay cell, and send it. */ - log_fn(LOG_INFO,"Converting created cell to extended relay cell, sending."); + log_fn(LOG_DEBUG,"Converting created cell to extended relay cell, sending."); connection_edge_send_command(NULL, circ, RELAY_COMMAND_EXTENDED, cell->payload, ONIONSKIN_REPLY_LEN, NULL); } |