introduce testing logger

This commit is contained in:
Anton Kaliaev
2017-05-04 16:50:00 +04:00
parent 6baaad9975
commit d2a4b16b28
10 changed files with 21 additions and 28 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ func startClient(abciType string) abcicli.Client {
if err != nil {
panic("connecting to abci_app: " + err.Error())
}
logger := log.NewTmLogger(os.Stdout)
logger := log.NewTMLogger(os.Stdout)
client.SetLogger(log.With(logger, "module", "abcicli"))
return client
}