Files
loggerx/loggerx_test.go
T

20 lines
241 B
Go
Raw Normal View History

2024-01-22 18:05:51 +08:00
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")
}