mirror of
https://github.com/coder/coder.git
synced 2025-07-06 15:41:45 +00:00
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.
This commit is contained in:
@ -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{}),
|
||||
|
Reference in New Issue
Block a user