You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kratos/log/log_test.go

18 lines
324 B

4 years ago
package log
import (
"context"
4 years ago
"testing"
)
func TestInfo(t *testing.T) {
logger := DefaultLogger
logger = With(logger, "ts", DefaultTimestamp)
logger = With(logger, "caller", DefaultCaller)
_ = logger.Log(LevelInfo, "key1", "value1")
4 years ago
}
func TestWithContext(t *testing.T) {
WithContext(context.Background(), nil)
}