diff options
author | obscuren <geffobscura@gmail.com> | 2014-10-23 20:04:00 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-10-23 20:04:00 +0800 |
commit | feef194829b07570e91873ed5d1e8cc51e8fa430 (patch) | |
tree | 7ccb57a57bc538c8ae242fcad95f96218b21862e /tests/ethtest | |
parent | 91c876831a3b616beb759c30d705407845ffc3ee (diff) | |
download | dexon-feef194829b07570e91873ed5d1e8cc51e8fa430.tar.gz dexon-feef194829b07570e91873ed5d1e8cc51e8fa430.tar.zst dexon-feef194829b07570e91873ed5d1e8cc51e8fa430.zip |
Chnged to use GetOp instead & added error + checking
Diffstat (limited to 'tests/ethtest')
-rw-r--r-- | tests/ethtest/main.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/ethtest/main.go b/tests/ethtest/main.go index e19892557..1f2a15e1c 100644 --- a/tests/ethtest/main.go +++ b/tests/ethtest/main.go @@ -63,7 +63,7 @@ func RunVmTest(js string) (failed int) { // When an error is returned it doesn't always mean the tests fails. // Have to come up with some conditional failing mechanism. if err != nil { - helper.Log.Infoln(err) + log.Println(err) } rexp := helper.FromHex(test.Out) @@ -96,6 +96,7 @@ func RunVmTest(js string) (failed int) { } func main() { + helper.Logger.SetLogLevel(5) if len(os.Args) == 1 { log.Fatalln("no json supplied") } |