Skip to content

Commit

Permalink
Fix the values for the level field of the log processor (#174)
Browse files Browse the repository at this point in the history
We don't support `ALL`.

Signed-off-by: Mihai Todor <[email protected]>
  • Loading branch information
mihaitodor authored Feb 6, 2025
1 parent 7e140ee commit 1498c0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/impl/pure/processor_log.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ pipeline:
`+"```"+`
`).
Fields(
service.NewStringEnumField(logPFieldLevel, "ERROR", "WARN", "INFO", "DEBUG", "TRACE", "ALL").
service.NewStringEnumField(logPFieldLevel, "ERROR", "WARN", "INFO", "DEBUG", "TRACE").
Description("The log level to use.").
LintRule(``).
Default("INFO"),
Expand Down

0 comments on commit 1498c0e

Please sign in to comment.