grlogs/log_test.go
2020-04-28 10:37:47 +08:00

15 lines
236 B
Go

package grlogs
import (
"testing"
"time"
)
func TestGetLogger(t *testing.T) {
l := Get("nds", 128)
l.Debug("我正在调试")
l.Critical("出错了")
Get("nds").Warning("hadoee %s", time.Now().Format(time.RFC1123))
l.Flush()
}