tendermint/binary -> tendermint/wire

This commit is contained in:
Jae Kwon
2015-07-25 15:45:45 -07:00
parent 0ef5c3ad07
commit 3be3647dc8
64 changed files with 371 additions and 371 deletions

18
wire/log.go Normal file
View 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(),
),
)
}