diff --git a/crates/tor-events/src/lib.rs b/crates/tor-events/src/lib.rs index 136eebc71..5f4fabe6a 100644 --- a/crates/tor-events/src/lib.rs +++ b/crates/tor-events/src/lib.rs @@ -385,7 +385,6 @@ mod test { // this shouldn't have an event to receive now let result = tokio::time::timeout(Duration::from_millis(100), rx.next()).await; - eprintln!("result: {:?}", result); assert!(result.is_err()); }); } diff --git a/crates/tor-proto/src/channel/reactor.rs b/crates/tor-proto/src/channel/reactor.rs index 5b161389b..0336ba006 100644 --- a/crates/tor-proto/src/channel/reactor.rs +++ b/crates/tor-proto/src/channel/reactor.rs @@ -526,7 +526,7 @@ pub(crate) mod test { let rtc = rt.clone(); let send_response = async { rtc.sleep(Duration::from_millis(100)).await; - eprintln!("sending createdfast"); + trace!("sending createdfast"); // We'll get a bad handshake result from this createdfast cell. let created_cell = ChanCell::new(id, msg::CreatedFast::new(*b"x").into()); input.send(Ok(created_cell)).await.unwrap();