grlogs/log_test.go

13 lines
191 B
Go
Raw Normal View History

2020-04-01 11:38:28 +08:00
package grlogs
import (
"github.com/astaxie/beego/logs"
"testing"
)
func TestGetLogger(t *testing.T) {
logs.NewLogger()
logs.Info(LEVEL_ALL)
GetLogger("nds").Debug("akldalskflasfa")
}