Skip to content

Commit e6b3aab

Browse files
committed
remove debug println!
1 parent a38c55a commit e6b3aab

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

iroh/src/magicsock/remote_map/remote_state/path_state.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ impl RemotePathState {
4848
source: Source,
4949
) {
5050
let addrs = addrs.collect::<Vec<_>>();
51-
println!("{:?}", addrs);
5251
let now = Instant::now();
5352
for addr in addrs {
5453
self.paths
@@ -104,10 +103,7 @@ impl RemotePathState {
104103
let result = match (self.paths.is_empty(), discovery_error) {
105104
(false, _) => Ok(()),
106105
(true, Some(err)) => Err(err),
107-
(true, None) => {
108-
println!("emit_pending_resolve_requests");
109-
Err(e!(DiscoveryError::NoResults))
110-
}
106+
(true, None) => Err(e!(DiscoveryError::NoResults)),
111107
};
112108
for tx in self.pending_resolve_requests.drain(..) {
113109
tx.send(result.clone()).ok();

0 commit comments

Comments
 (0)