mirror of
https://github.com/charlienet/go-mixed.git
synced 2025-07-18 00:22:41 +08:00
16 lines
191 B
Go
16 lines
191 B
Go
package logx_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/charlienet/go-mixed/logx"
|
|
)
|
|
|
|
func TestBuilder(t *testing.T) {
|
|
logger := logx.NewBuilder().
|
|
WithLogrus().
|
|
WithLogger()
|
|
|
|
_ = logger
|
|
}
|