starlog/starlog_test.go

13 lines
139 B
Go
Raw Normal View History

2019-06-28 10:56:57 +08:00
package starlog
2019-12-04 12:31:08 +08:00
import (
"testing"
2020-12-21 17:22:45 +08:00
"time"
2019-12-04 12:31:08 +08:00
)
2019-06-28 10:56:57 +08:00
2019-12-04 12:31:08 +08:00
func Test_LOG(t *testing.T) {
2020-12-21 17:22:45 +08:00
go Debugln("nb")
Debugln("nb2")
time.Sleep(time.Second)
2019-06-28 10:56:57 +08:00
}