Files
loggerx/loggerx_test.go
T
2024-01-22 18:05:51 +08:00

20 lines
241 B
Go

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")
}