mirror of
https://gitee.ltd/lxh/logger.git
synced 2025-01-18 18:56:53 +08:00
9 lines
160 B
Go
9 lines
160 B
Go
|
package logger
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
func TestLogger(t *testing.T) {
|
||
|
InitLogger(LogConfig{Mode: Dev, LokiEnable: false, FileEnable: true})
|
||
|
Say.Debug("芜湖")
|
||
|
}
|