14 lines
168 B
Go
14 lines
168 B
Go
|
package logger
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"os"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestLogger(t *testing.T) {
|
||
|
log := Make(FormatHuman, os.Stdout)
|
||
|
|
||
|
log.Info(context.Background(), "test")
|
||
|
}
|