chore: Logging level to info
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
kekskurse 2025-08-06 18:22:25 +02:00
parent 5bbe5cedfe
commit e84340df2c

View file

@ -6,12 +6,17 @@ import (
"syscall"
"time"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
)
var currentConfig config
func main() {
zerolog.SetGlobalLevel(zerolog.InfoLevel)
log.Info().Msg("Start")
var err error
currentConfig, err = ReadFromFile("config.yml")
if err != nil {