Skip to content

Commit

Permalink
update default config file with new ansi color options
Browse files Browse the repository at this point in the history
  • Loading branch information
jdrews committed Feb 6, 2023
1 parent cead6e3 commit e77b8d0
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions logstation.default.conf
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,17 @@ logStationName = "logstation"

# Setup your syntax highlighting below
# matching gives priority to the top most
# Possible colors:
# red, green, yellow, blue, magenta, cyan
# hired, higreen, hiyellow, hiblue, himagenta, hicyan
# NOTE: these are ANSI colors.
# The "hi" colors above are recommended as they show up much better on black backgrounds
syntaxColors = [
{ color="#FF1F1F", regex=".*ERROR.*" }, # red
{ color="#F2FF00", regex=".*WARN.*" }, # yellow
{ color="#00FF2F", regex=".*INFO.*" }, # green
{ color="#4F9BFF", regex=".*DEBUG.*" }, # blue
{ color="#4FFFF6", regex=".*TRACE.*" }, # cyan
{ color="hired", regex=".*ERROR.*" }, # red
{ color="hiyellow", regex=".*WARN.*" }, # yellow
{ color="higreen", regex=".*INFO.*" }, # green
{ color="hiblue", regex=".*DEBUG.*" }, # blue
{ color="hicyan", regex=".*TRACE.*" }, # cyan
]

[additional_settings]
Expand Down

0 comments on commit e77b8d0

Please sign in to comment.