diff options
author | Roger Dingledine <arma@torproject.org> | 2004-08-18 11:20:15 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-08-18 11:20:15 +0000 |
commit | b500104cbe48d072a7f3ef9135263b054fc63d76 (patch) | |
tree | e61da657218c18c232029fac9bcf02684c72f6ba /src/or/command.c | |
parent | d6c09c054aa0154a6d4cd12225f0714d6330592f (diff) | |
download | tor-b500104cbe48d072a7f3ef9135263b054fc63d76.tar.gz tor-b500104cbe48d072a7f3ef9135263b054fc63d76.zip |
tolerate old 0.0.7 clients that demand a certain ip:port for a router
even though it's moved on to another one.
also reduce some log verbosity.
svn:r2288
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 284c4c6a9c..f80dd6fcea 100644 --- a/src/or/command.c +++ b/src/or/command.c @@ -48,7 +48,7 @@ static void command_time_process_cell(cell_t *cell, connection_t *conn, int *tim time_passed = tv_udiff(&start, &end) ; if (time_passed > 10000) { /* more than 10ms */ - log_fn(LOG_INFO,"That call just took %ld ms.",time_passed/1000); + log_fn(LOG_DEBUG,"That call just took %ld ms.",time_passed/1000); } *time += time_passed; } |