mirror of
https://github.com/go-kratos/kratos.git
synced 2025-03-31 22:05:08 +02:00
9 lines
155 B
Go
9 lines
155 B
Go
|
package log
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
func TestValue(t *testing.T) {
|
||
|
logger := With(DefaultLogger, "caller", Caller(4))
|
||
|
logger.Print("message", "helloworld")
|
||
|
}
|