Skip to content

Commit

Permalink
Disable logger development mode to avoid panicking, use zap as logger (
Browse files Browse the repository at this point in the history
  • Loading branch information
njuettner authored Sep 10, 2024
1 parent 69caea0 commit f812bea
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,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-08-01

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func main() {
"Enable leader election for controller manager. "+
"Enabling this will ensure there is only one active controller manager.")
opts := zap.Options{
Development: true,
Development: false,
}
opts.BindFlags(flag.CommandLine)
flag.Parse()
Expand Down

0 comments on commit f812bea

Please sign in to comment.