Files
atlantis/server/logging/log.go
Ken Kaizu fdcb1adfb0 feat: suppress log package logging (#3076)
To suppress uber-go/tally logs which are not structured logs.
2023-01-30 23:55:01 -06:00

13 lines
253 B
Go

package logging
import (
"io"
"log"
)
// SuppressDefaultLogging suppresses the default logging
func SuppressDefaultLogging() {
// Some packages use the default logger, so we need to suppress it. (such as uber-go/tally)
log.SetOutput(io.Discard)
}