diff options
Diffstat (limited to 'cmd/ethtest/main.go')
-rw-r--r-- | cmd/ethtest/main.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cmd/ethtest/main.go b/cmd/ethtest/main.go index ee6bcc540..f2f7d27f3 100644 --- a/cmd/ethtest/main.go +++ b/cmd/ethtest/main.go @@ -24,7 +24,6 @@ package main import ( "bytes" "encoding/json" - "fmt" "io" "io/ioutil" "log" @@ -210,7 +209,7 @@ func RunVmTest(r io.Reader) (failed int) { } if failed == 1 { - fmt.Println(string(statedb.Dump())) + helper.Log.Infoln(string(statedb.Dump())) } logger.Flush() |