feat: replace logging with zerolog

This commit is contained in:
Manuel Rüger
2026-03-28 09:55:58 +01:00
parent 74c4a306c3
commit e160121005
19 changed files with 204 additions and 180 deletions

View File

@@ -6,7 +6,7 @@ import (
"os"
"github.com/kovetskiy/mark/v16/util"
"github.com/reconquest/pkg/log"
"github.com/rs/zerolog/log"
"github.com/urfave/cli/v3"
)
@@ -34,6 +34,6 @@ func main() {
}
if err := cmd.Run(context.TODO(), os.Args); err != nil {
log.Fatal(err)
log.Fatal().Msg(err.Error())
}
}