mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
13 lines
154 B
Go
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!")
|
|
}
|