diff options
author | Wolfy-J <[email protected]> | 2020-10-28 13:26:00 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2020-10-28 13:26:00 +0300 |
commit | d6ceb16a9a165764739137de6a2b621685bb8ac3 (patch) | |
tree | 5a5202aea9021aa2de3daccb06680d6174ed8717 /plugins/logger/config.go | |
parent | a9ddea1855ffda6f6388fc91223b8c63ed48b32f (diff) |
- new coloring strategy for names
Diffstat (limited to 'plugins/logger/config.go')
-rw-r--r-- | plugins/logger/config.go | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/plugins/logger/config.go b/plugins/logger/config.go index 12badade..4e9f1220 100644 --- a/plugins/logger/config.go +++ b/plugins/logger/config.go @@ -1,9 +1,14 @@ package logger type Config struct { - Squash bool + Default LoggerConfig + + Suppress bool + Channels map[string]LoggerConfig } type LoggerConfig struct { + // Level to report messages from. + Level string } |