libp2p/dialer.nim: tiny log change to make it clearer a connection upgrade (#1071)

This commit is contained in:
Ivan FB 2024-03-18 11:38:23 +01:00 committed by GitHub
parent 48a3ac06ff
commit fdf53d18cd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ proc dialAndUpgrade(
# If we failed to establish the connection through one transport, # If we failed to establish the connection through one transport,
# we won't succeeded through another - no use in trying again # we won't succeeded through another - no use in trying again
await dialed.close() await dialed.close()
debug "Upgrade failed", err = exc.msg, peerId = peerId.get(default(PeerId)) debug "Connection upgrade failed", err = exc.msg, peerId = peerId.get(default(PeerId))
if exc isnot CancelledError: if exc isnot CancelledError:
if dialed.dir == Direction.Out: if dialed.dir == Direction.Out:
libp2p_failed_upgrades_outgoing.inc() libp2p_failed_upgrades_outgoing.inc()