Skip to content

Commit 1df943e

Browse files
authored
fix: Disable TURN logs (#1061)
This was accidentally merged as part of the TURN PR. In the future we can wrap this to provide useful output, but right now it's too verbose.
1 parent d202f20 commit 1df943e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coderd/turnconn/turnconn.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ func New(relayAddress *turn.RelayAddressGeneratorStatic) (*Server, error) {
4242
}
4343
}
4444
logger := logging.NewDefaultLoggerFactory()
45-
logger.DefaultLogLevel = logging.LogLevelDebug
45+
logger.DefaultLogLevel = logging.LogLevelDisabled
4646
server := &Server{
4747
conns: make(chan net.Conn, 1),
4848
closed: make(chan struct{}),

0 commit comments

Comments
 (0)