This repository has been archived on 2025-07-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
analytics/ingest/config/internal/debug/inactive.go
2023-04-05 14:24:23 +01:00

13 lines
150 B
Go

//go:build !debug
package debug
import (
"github.com/rs/zerolog"
)
var Enable = false
func init() {
zerolog.SetGlobalLevel(zerolog.InfoLevel)
}