ShadowEditor/server/test/log/log_test.go
2020-05-14 21:23:23 +08:00

13 lines
154 B
Go

package log
import (
"testing"
"github.com/sirupsen/logrus"
)
func TestLog(t *testing.T) {
logger := logrus.New()
logger.Infoln("Hello, world!")
}