mirror of
https://github.com/AynaLivePlayer/AynaLivePlayer.git
synced 2025-12-15 14:38:17 +08:00
10 lines
184 B
Go
10 lines
184 B
Go
package repository
|
|
|
|
import "testing"
|
|
|
|
func TestNewZapLogger(t *testing.T) {
|
|
l := NewZapColoredLogger()
|
|
l.Infof("asdfasdf %s", "aaa")
|
|
l.WithPrefix("prefix").Infof("111 %s", "aaa")
|
|
}
|