Skip to content

Commit

Permalink
fix: trace happy path connection count message (#1754)
Browse files Browse the repository at this point in the history
This appears in the logs frequently and isn't much use.
  • Loading branch information
achingbrain authored May 12, 2023
1 parent c90f496 commit 710da91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/connection-manager/auto-dial.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export class AutoDial implements Startable {

// Already has enough connections
if (numConnections >= this.minConnections) {
log('have enough connections %d/%d', numConnections, this.minConnections)
log.trace('have enough connections %d/%d', numConnections, this.minConnections)
return
}

Expand Down

0 comments on commit 710da91

Please sign in to comment.