mirror of
https://github.com/go-kratos/kratos.git
synced 2025-02-05 13:15:11 +02:00
f7588a47de
* fix lint check * fix lll lint error * fix build error * fix gomnd * fix shadow declaration * add make test command * update
10 lines
209 B
Go
10 lines
209 B
Go
package log
|
|
|
|
import "testing"
|
|
|
|
func TestValue(t *testing.T) {
|
|
logger := DefaultLogger
|
|
logger = With(logger, "ts", DefaultTimestamp, "caller", DefaultCaller)
|
|
_ = logger.Log(LevelInfo, "msg", "helloworld")
|
|
}
|