2
0
mirror of https://gitee.ltd/lxh/logger.git synced 2025-01-18 18:56:53 +08:00
logger/logger_test.go

9 lines
160 B
Go
Raw Normal View History

2021-12-14 10:53:50 +08:00
package logger
import "testing"
func TestLogger(t *testing.T) {
InitLogger(LogConfig{Mode: Dev, LokiEnable: false, FileEnable: true})
Say.Debug("芜湖")
}