mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-13 12:33:03 +02:00
12 lines
280 B
Go
12 lines
280 B
Go
package test
|
|
|
|
import (
|
|
"github.com/lightningnetwork/lnd/build"
|
|
)
|
|
|
|
// 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)
|
|
)
|