diff options
author | Nick Mathewson <nickm@torproject.org> | 2011-05-12 19:41:08 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-05-12 19:41:08 -0400 |
commit | e0d5a6e1849673589c5b7f04d89e25194167344d (patch) | |
tree | 939e1f2bd9c4db6cd49e46d3f2c60739b24acca0 /src/or/circuituse.c | |
parent | 98870f2eada31ee7efca62ab7adf98cb843e2937 (diff) | |
download | tor-e0d5a6e1849673589c5b7f04d89e25194167344d.tar.gz tor-e0d5a6e1849673589c5b7f04d89e25194167344d.zip |
Downgrade the "we launched 10 circuits for this stream" message. (See bug 3080)
Diffstat (limited to 'src/or/circuituse.c')
-rw-r--r-- | src/or/circuituse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuituse.c b/src/or/circuituse.c index 9feb4e1c4c..e68fb4fa82 100644 --- a/src/or/circuituse.c +++ b/src/or/circuituse.c @@ -1416,7 +1416,7 @@ circuit_get_open_circ_or_launch(edge_connection_t *conn, * a bad sign: we should tell the user. */ if (conn->num_circuits_launched < NUM_CIRCUITS_LAUNCHED_THRESHOLD && ++conn->num_circuits_launched == NUM_CIRCUITS_LAUNCHED_THRESHOLD) - log_warn(LD_BUG, "The application request to %s:%d has launched " + log_info(LD_CIRC, "The application request to %s:%d has launched " "%d circuits without finding one it likes.", escaped_safe_str_client(conn->socks_request->address), conn->socks_request->port, |