diff --git a/logger_test.go b/logger_test.go deleted file mode 100644 index ecc7aa3..0000000 --- a/logger_test.go +++ /dev/null @@ -1,23 +0,0 @@ -package logger - -import ( - "gitee.ltd/lxh/logger/log" - "testing" - "time" -) - -func TestLogger(t *testing.T) { - InitLogger(LogConfig{Mode: Dev, LokiEnable: false, FileEnable: true}) - log.Debug("芜湖") -} - -func TestLogger1(t *testing.T) { - log.Info("我是测试消息") - time.Sleep(5 * time.Second) -} - -func TestLogger2(t *testing.T) { - InitLogger(LogConfig{Mode: Dev, LokiEnable: false, FileEnable: true}) - log.Info("我是测试消息") - //time.Sleep(5 * time.Second) -}