loop/test/log.go

13 lines
280 B
Go
Raw Normal View History

2019-03-06 21:13:50 +01:00
package test
import (
"github.com/lightningnetwork/lnd/build"
2019-03-06 21:13:50 +01:00
)
// log is a logger that is initialized with no output filters. This
// means the package will not perform any logging by default until the caller
// requests it.
var (
logger = build.NewSubLogger("TEST", nil)
2019-03-06 21:13:50 +01:00
)