daemon: refactor out of cmd into own package

This commit is contained in:
Ethan Buchman
2015-03-16 22:30:51 -07:00
committed by Jae Kwon
parent 7aa1d67c97
commit 983b7f48e8
3 changed files with 11 additions and 3 deletions

7
daemon/log.go Normal file
View File

@ -0,0 +1,7 @@
package daemon
import (
"github.com/tendermint/tendermint/logger"
)
var log = logger.New("module", "daemon")