Files
utils/loggerx/loggerx_test.go
T

21 lines
249 B
Go
Raw Normal View History

2023-09-16 20:14:20 +08:00
package loggerx_test
import (
"context"
"testing"
2023-09-17 18:05:01 +08:00
"code.yun.ink/open/utils/loggerx"
2023-09-16 20:14:20 +08:00
)
// func TestMain(m *testing.M) {
// }
func TestLogger(t *testing.T) {
l := loggerx.InitLogger("profix")
l.Error(context.Background(), "test error")
}