21 lines
362 B
Go
21 lines
362 B
Go
|
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"
|
||
|
)
|