mirror of
https://github.com/charlienet/go-mixed.git
synced 2025-07-17 16:12:42 +08:00
17 lines
215 B
Go
17 lines
215 B
Go
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")
|
|
}
|