1
0
mirror of https://github.com/charlienet/go-mixed.git synced 2025-07-18 00:22:41 +08:00
This commit is contained in:
2022-04-22 14:32:29 +08:00
parent efc8210d97
commit f7df1f1668
10 changed files with 276 additions and 82 deletions

16
logx/std_test.go Normal file
View File

@ -0,0 +1,16 @@
package logx_test
import (
"testing"
"github.com/charlienet/go-mixed/logx"
)
func TestStandardLogger(t *testing.T) {
l := logx.StandardLogger()
l.Debug("abc")
l.Info("abc")
l.Warn("abc")
l.Error("abc")
}