generic event meter

This commit is contained in:
Ethan Buchman
2016-01-10 14:49:09 -05:00
parent a24a364fb3
commit 1b8aacd2ee
3 changed files with 272 additions and 0 deletions

18
log.go Normal file
View File

@ -0,0 +1,18 @@
package main
import (
"github.com/tendermint/go-logger"
)
var log = logger.New("module", "netmon")
/*
func init() {
log.SetHandler(
logger.LvlFilterHandler(
logger.LvlDebug,
logger.BypassHandler(),
),
)
}
*/