forked from p93542168/wheat-cache
27 lines
548 B
Go
27 lines
548 B
Go
package logx
|
|
|
|
import (
|
|
"context"
|
|
_ "gitee.com/timedb/wheatCache/conf"
|
|
"gitee.com/timedb/wheatCache/pkg/event"
|
|
"testing"
|
|
)
|
|
|
|
func TestStd(t *testing.T) {
|
|
Info("%d%s", 11, "Info")
|
|
Debug("%d%s", 11, "Debug")
|
|
Warn("%d%s", 11, "Warn")
|
|
Error("%d%s", 11, "Error")
|
|
Panic("%d%s", 11, "Panic")
|
|
|
|
logger := With(context.Background(),
|
|
event.NewProduce(event.NewDriver(100)))
|
|
|
|
logger.Info("%d%s", 11, "Info")
|
|
logger.Debug("%d%s", 11, "Debug")
|
|
logger.Warn("%d%s", 11, "Warn")
|
|
logger.Error("%d%s", 11, "Error")
|
|
logger.Panic("%d%s", 11, "Panic")
|
|
|
|
}
|