summaryrefslogtreecommitdiff
path: root/plugins/logger/config.go
blob: 4e9f1220d29b8ba005c5329d75502179ebe14c09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package logger

type Config struct {
	Default LoggerConfig

	Suppress bool

	Channels map[string]LoggerConfig
}

type LoggerConfig struct {
	// Level to report messages from.
	Level string
}