13 lines
191 B
Go
13 lines
191 B
Go
|
package grlogs
|
||
|
|
||
|
import (
|
||
|
"github.com/astaxie/beego/logs"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestGetLogger(t *testing.T) {
|
||
|
logs.NewLogger()
|
||
|
logs.Info(LEVEL_ALL)
|
||
|
GetLogger("nds").Debug("akldalskflasfa")
|
||
|
}
|