1
0
mirror of https://github.com/go-kratos/kratos.git synced 2025-01-22 03:38:41 +02:00
kratos/log/std_test.go
Tony Chen 21557b38f6
log: add log context (#766)
* add log context & valuer
2021-03-14 15:36:00 +08:00

13 lines
258 B
Go

package log
import "testing"
func TestStdLogger(t *testing.T) {
logger := DefaultLogger
Debug(logger).Print("log", "test debug")
Info(logger).Print("log", "test info")
Warn(logger).Print("log", "test warn")
Error(logger).Print("log", "test error")
}