mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-11 22:37:11 +00:00
12 lines
161 B
Go
12 lines
161 B
Go
package consensus
|
|
|
|
import (
|
|
"github.com/op/go-logging"
|
|
)
|
|
|
|
var log = logging.MustGetLogger("consensus")
|
|
|
|
func SetConsensusLogger(l *logging.Logger) {
|
|
log = l
|
|
}
|