arti-client: Downgrade "got a circuit for" message.

This is not interesting to the user, and violates some of our
safe-logging rules (like "Don't log at info for each user request"
and "don't log ports").
This commit is contained in:
Nick Mathewson 2022-08-25 11:05:42 -04:00
parent 0f133de6b9
commit e8fcf2b038
1 changed files with 1 additions and 1 deletions

View File

@ -737,7 +737,7 @@ impl<R: Runtime> TorClient<R> {
.get_or_launch_exit_circ(&exit_ports, prefs)
.await
.map_err(wrap_err)?;
info!("Got a circuit for {}:{}", sensitive(&addr), port);
debug!("Got a circuit for {}:{}", sensitive(&addr), port);
let stream_future = circ.begin_stream(&addr, port, Some(prefs.stream_parameters()));
// This timeout is needless but harmless for optimistic streams.