Skip to content

Commit 710da91

Browse files
authored
fix: trace happy path connection count message (#1754)
This appears in the logs frequently and isn't much use.
1 parent c90f496 commit 710da91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/connection-manager/auto-dial.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ export class AutoDial implements Startable {
112112

113113
// Already has enough connections
114114
if (numConnections >= this.minConnections) {
115-
log('have enough connections %d/%d', numConnections, this.minConnections)
115+
log.trace('have enough connections %d/%d', numConnections, this.minConnections)
116116
return
117117
}
118118

0 commit comments

Comments
 (0)