saving development state...

This commit is contained in:
Jae Kwon
2014-08-10 16:35:08 -07:00
parent 50544c50af
commit d300a67bb1
46 changed files with 2458 additions and 1058 deletions

8
log.go
View File

@ -4,7 +4,8 @@ import (
"os"
"github.com/op/go-logging"
"github.com/tendermint/tendermint/block"
"github.com/tendermint/tendermint/blocks"
"github.com/tendermint/tendermint/consensus"
"github.com/tendermint/tendermint/p2p"
)
@ -27,6 +28,7 @@ func init() {
Log.Error("error")
*/
p2p.SetLogger(log)
block.SetLogger(log)
p2p.SetP2PLogger(log)
blocks.SetBlocksLogger(log)
consensus.SetConsensusLogger(log)
}