mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-28 20:21:47 +00:00
tendermint/binary -> tendermint/wire
This commit is contained in:
18
wire/log.go
Normal file
18
wire/log.go
Normal file
@ -0,0 +1,18 @@
|
||||
package wire
|
||||
|
||||
import (
|
||||
"github.com/tendermint/tendermint/Godeps/_workspace/src/github.com/tendermint/log15"
|
||||
"github.com/tendermint/tendermint/logger"
|
||||
)
|
||||
|
||||
var log = logger.New("module", "binary")
|
||||
|
||||
func init() {
|
||||
log.SetHandler(
|
||||
log15.LvlFilterHandler(
|
||||
log15.LvlWarn,
|
||||
//log15.LvlDebug,
|
||||
logger.RootHandler(),
|
||||
),
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user