diff --git a/CHANGELOG.md b/CHANGELOG.md index 6317e89..f904381 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Fixed + +- Disable logger development mode to avoid panicking, use zap as logger. + ## [0.10.1] - 2024-07-02 ### Changed diff --git a/main.go b/main.go index e11827f..46eb3e4 100644 --- a/main.go +++ b/main.go @@ -54,7 +54,7 @@ func main() { flag.StringVar(&probeAddr, "health-probe-bind-address", ":8081", "The address the probe endpoint binds to.") flag.BoolVar(&dryRun, "dry-run", false, "Enable dry-run.") opts := zap.Options{ - Development: true, + Development: false, } opts.BindFlags(flag.CommandLine) flag.Parse()