Make consensus logs use default log handler

This commit is contained in:
Jae Kwon 2015-12-21 17:26:08 -08:00
parent d58b3d54b1
commit ceb6e1e95f
1 changed files with 3 additions and 1 deletions

View File

@ -4,8 +4,9 @@ import (
"github.com/tendermint/go-logger"
)
var log = logger.NewBypass("module", "consensus")
var log = logger.New("module", "consensus")
/*
func init() {
log.SetHandler(
logger.LvlFilterHandler(
@ -14,3 +15,4 @@ func init() {
),
)
}
*/