This commit is contained in:
Yun
2024-01-22 18:05:51 +08:00
commit fc485d8670
10 changed files with 433 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
package loggerx_test
import (
"context"
"testing"
"code.yun.ink/pkg/loggerx"
)
// func TestMain(m *testing.M) {
// }
func TestLogger(t *testing.T) {
l := loggerx.InitLogger("profix")
l.Error(context.Background(), "test error")
}