Skip to content

Commit

Permalink
fix(logs) logs should not color words with the ERR substring
Browse files Browse the repository at this point in the history
  • Loading branch information
corykitchens committed Sep 1, 2020
1 parent dde3345 commit 73563de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/pkg/aws/cloudwatchlogs/cloudwatchlogs.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const (
)

var (
fatalCodes = []string{"FATA", "FATAL", "fatal", "ERR", "ERROR", "error"}
fatalCodes = []string{"FATA", "FATAL", "fatal", "ERROR", "error"}
warningCodes = []string{"WARN", "warn", "WARNING", "warning"}
)

Expand Down

0 comments on commit 73563de

Please sign in to comment.