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/active.go
2023-04-05 14:24:23 +01:00

17 lines
206 B
Go

//go:build debug
package debug
import (
"fmt"
"github.com/rs/zerolog"
)
var Enable = true
func init() {
zerolog.SetGlobalLevel(zerolog.DebugLevel)
fmt.Println("DEBUG MODE ACTIVE")
fmt.Println()
}