Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/logging/log.go
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ func (l Logger) Sugar() *zap.SugaredLogger {

func initZapLogger(w io.Writer, logging *egv1a1.EnvoyGatewayLogging, level egv1a1.LogLevel) *zap.Logger {
parseLevel, _ := zapcore.ParseLevel(string(logging.DefaultEnvoyGatewayLoggingLevel(level)))
cfg := zap.NewDevelopmentEncoderConfig()
cfg := zap.NewProductionEncoderConfig()
var encoder zapcore.Encoder
logEncoder := egv1a1.EnvoyGatewayLogEncoderText
if logging != nil && logging.Encoder != nil {
Expand Down
1 change: 1 addition & 0 deletions release-notes/current.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ breaking changes: |
The DirectResponse body in HTTPFilter now supports Envoy command operators for dynamic content. Existing configurations including the template syntax (%) will be interpolated.
The `0s` timeout in SecurityPolicy is now treated as infinite timeout instead of immediate timeout.
`SamplingFraction` behavior changed from raw fraction to percentage ratio. This will lead to 100x more sampling than before. E.g. `numerator: 100` used to result in 1% sampling rate, now will result in 100% sampling.
The controller now uses production logging encoder config by default, which provides better output when using JSON encoder.
Copy link
Copy Markdown
Contributor

@arkodg arkodg Mar 31, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit non blocking, can we we more prescriptive, instead of better, also example would be great


# Updates addressing vulnerabilities, security flaws, or compliance requirements.
security updates: |
Expand Down
Loading