mirror of
https://github.com/tendermint/tendermint.git
synced 2026-07-25 01:22:50 +00:00
12 lines
143 B
Go
12 lines
143 B
Go
package p2p
|
|
|
|
import (
|
|
"github.com/op/go-logging"
|
|
)
|
|
|
|
var log = logging.MustGetLogger("p2p")
|
|
|
|
func SetP2PLogger(l *logging.Logger) {
|
|
log = l
|
|
}
|