Browse Source

Make consensus logs use default log handler

pull/176/head
Jae Kwon 9 years ago
parent
commit
ceb6e1e95f
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      consensus/log.go

+ 3
- 1
consensus/log.go 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() {
),
)
}
*/

Loading…
Cancel
Save