remove duplicate log (#638)

This commit is contained in:
Youngjoon Lee 2024-04-24 20:25:55 +09:00 committed by GitHub
parent e085b6bef4
commit f98c1c0864
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 4 deletions

View File

@ -210,10 +210,6 @@ impl SwarmHandler {
self.pending_dials.insert(connection_id, dial);
}
Err(e) => {
tracing::error!(
"Failed to connect to {} with unretriable error: {e}",
dial.addr
);
if let Err(err) = dial.result_sender.send(Err(e)) {
tracing::warn!("failed to send the Err result of dialing: {err:?}");
}