From 1df943e010cdf576fb169293db02daf93f3f268e Mon Sep 17 00:00:00 2001 From: Kyle Carberry Date: Mon, 18 Apr 2022 18:01:49 -0500 Subject: [PATCH] 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. --- coderd/turnconn/turnconn.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coderd/turnconn/turnconn.go b/coderd/turnconn/turnconn.go index 29462559ce..b8231146d3 100644 --- a/coderd/turnconn/turnconn.go +++ b/coderd/turnconn/turnconn.go @@ -42,7 +42,7 @@ func New(relayAddress *turn.RelayAddressGeneratorStatic) (*Server, error) { } } logger := logging.NewDefaultLoggerFactory() - logger.DefaultLogLevel = logging.LogLevelDebug + logger.DefaultLogLevel = logging.LogLevelDisabled server := &Server{ conns: make(chan net.Conn, 1), closed: make(chan struct{}),