Skip to content

Commit

Permalink
Set log level for undefined stability level to debug (open-telemetr…
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Boten authored Jul 6, 2022
1 parent c638f7f commit 6eed626
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
### 🧰 Bug fixes 🧰

- Fix initialization of the OpenTelemetry MetricProvider. (#5571)
- Set log level for `undefined` stability level to debug. (#5635)

## v0.54.0 Beta

Expand Down
2 changes: 1 addition & 1 deletion service/internal/pipelines/pipelines.go
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ func logStabilityMessage(logger *zap.Logger, sl component.StabilityLevel) {
case component.StabilityLevelAlpha, component.StabilityLevelBeta, component.StabilityLevelStable:
logger.Debug("Stability level", zap.String(components.ZapStabilityKey, sl.String()))
default:
logger.Info("Stability level of component undefined", zap.String(components.ZapStabilityKey, sl.String()))
logger.Debug("Stability level of component undefined", zap.String(components.ZapStabilityKey, sl.String()))
}
}

Expand Down
2 changes: 1 addition & 1 deletion service/internal/pipelines/pipelines_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ func TestLogStabilityLevle(t *testing.T) {
},
{
level: zapcore.InfoLevel,
expectedLogs: 4,
expectedLogs: 3,
},
}

Expand Down

0 comments on commit 6eed626

Please sign in to comment.