grlogs/options.go

21 lines
362 B
Go
Raw Normal View History

package grlogs
const (
_ = iota
LevelNone = iota
LevelCritical = iota
LevelError = iota
LevelWarning = iota
LevelWarn = iota
LevelInfo = iota
LevelDebug = iota
LevelAll = iota
)
const (
AdapterFile = "file"
AdapterConsole = "console"
AdapterSocket = "socket"
AdapterElasticSearch = "es"
)