mirror of
https://github.com/go-micro/go-micro.git
synced 2025-01-17 17:44:30 +02:00
14 lines
142 B
Go
14 lines
142 B
Go
|
package logger
|
||
|
|
||
|
type Level int8
|
||
|
|
||
|
const (
|
||
|
TraceLevel Level = iota - 1
|
||
|
DebugLevel
|
||
|
InfoLevel
|
||
|
WarnLevel
|
||
|
ErrorLevel
|
||
|
PanicLevel
|
||
|
FatalLevel
|
||
|
)
|