diff options
author | Roger Dingledine <arma@torproject.org> | 2004-12-13 00:44:39 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-12-13 00:44:39 +0000 |
commit | 011ad3cba5dadceb4b204aced00e3cd598465d1d (patch) | |
tree | 7f6eaf60a5189244ae5b26c0839667451b34c3f0 /src/or/onion.c | |
parent | 972124aab936a9fbfd3a736c903124d89515af78 (diff) | |
download | tor-011ad3cba5dadceb4b204aced00e3cd598465d1d.tar.gz tor-011ad3cba5dadceb4b204aced00e3cd598465d1d.zip |
clean up logging,
make it clearer which warns are bugs,
make the control log event match its specification,
point out a bug in how we deal with failure when renewing the tls context.
svn:r3138
Diffstat (limited to 'src/or/onion.c')
-rw-r--r-- | src/or/onion.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/onion.c b/src/or/onion.c index 9e40ca579b..5beb16d41c 100644 --- a/src/or/onion.c +++ b/src/or/onion.c @@ -46,7 +46,7 @@ int onion_pending_add(circuit_t *circ) { tor_assert(!ol_tail->next); if (ol_length >= get_options()->MaxOnionsPending) { - log_fn(LOG_WARN,"Already have %d onions queued. Closing.", ol_length); + log_fn(LOG_NOTICE,"Already have %d onions queued. Closing.", ol_length); tor_free(tmp); return -1; } |