1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 03:05:05 +08:00

doc: correct level value comment (#2653)

This commit is contained in:
张金富 2023-05-22 20:29:24 +08:00 committed by GitHub
parent 05ee4d489a
commit f0d22fe570
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,14 +20,14 @@ const (
LEVEL_DEV = LEVEL_ALL
LEVEL_PROD = LEVEL_WARN | LEVEL_ERRO | LEVEL_CRIT
LEVEL_NONE = 0
LEVEL_DEBU = 1 << iota // 8
LEVEL_INFO // 16
LEVEL_NOTI // 32
LEVEL_WARN // 64
LEVEL_ERRO // 128
LEVEL_CRIT // 256
LEVEL_PANI // 512
LEVEL_FATA // 1024
LEVEL_DEBU = 1 << iota // 16
LEVEL_INFO // 32
LEVEL_NOTI // 64
LEVEL_WARN // 128
LEVEL_ERRO // 256
LEVEL_CRIT // 512
LEVEL_PANI // 1024
LEVEL_FATA // 2048
)
// defaultLevelPrefixes defines the default level and its mapping prefix string.