grlogs/options.go

26 行
525 B
Go
Raw パーマリンク 通常表示 履歴

package grlogs
2020-04-28 10:37:47 +08:00
type Level int
type Adapter string
const (
2020-04-28 10:37:47 +08:00
_ Level = iota
LevelNone Level = iota
LevelCritical Level = iota
LevelError Level = iota
LevelWarning Level = iota
LevelWarn Level = iota
LevelInfo Level = iota
LevelDebug Level = iota
LevelAll Level = iota
)
const (
2020-04-28 10:37:47 +08:00
AdapterFile Adapter = "file"
AdapterConsole Adapter = "console"
AdapterSocket Adapter = "socket"
AdapterElasticSearch Adapter = "es"
2020-05-04 21:10:20 +08:00
AdapterAliLs Adapter = "alils"
)