We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f85bec6 commit 23bd102Copy full SHA for 23bd102
internal/component/otelcol/config_filter.go
@@ -226,7 +226,7 @@ type LogSeverityNumberMatchProperties struct {
226
func (args LogSeverityNumberMatchProperties) convert() (map[string]interface{}, error) {
227
numVal, exists := severityLevels[args.Min]
228
if !exists {
229
- return nil, fmt.Errorf(fmt.Sprintf("No severity value for %q", args.Min))
+ return nil, fmt.Errorf("No severity value for %q", args.Min)
230
}
231
232
return map[string]interface{}{
0 commit comments