fix logger bug

This commit is contained in:
2025-10-04 17:42:26 +08:00
parent 464617626b
commit 5584757ff4
4 changed files with 50 additions and 30 deletions

12
vars/logger.go Normal file
View File

@@ -0,0 +1,12 @@
package vars
// LogLevel 日志级别
type LogLevel int
const (
DEBUG LogLevel = iota
INFO
WARN
ERROR
FATAL
)