Skip to content

Commit

Permalink
Disable logger development mode to avoid panicking (#385)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssyno authored Oct 22, 2024
1 parent d445a11 commit c90fd45
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 @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Add Vertical Pod Autoscaler (VPA) configuration, enabled by default.

### Changed

- Disable logger development mode to avoid panicking

## [0.7.11] - 2024-06-12

### Changed
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ func main() {
"Enable metrics for VulnerabilityReport resources.")

opts := zap.Options{
Development: true,
Development: false,
}
opts.BindFlags(flag.CommandLine)
flag.Parse()
Expand Down

0 comments on commit c90fd45

Please sign in to comment.