From c941a39b756783d95526a74374dd2aa4283474fa Mon Sep 17 00:00:00 2001 From: Taylor Gerring Date: Thu, 11 Jun 2015 13:06:56 -0400 Subject: Cleanup logging --- tests/transaction_test_util.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tests/transaction_test_util.go') diff --git a/tests/transaction_test_util.go b/tests/transaction_test_util.go index 2864257b7..ef133a99d 100644 --- a/tests/transaction_test_util.go +++ b/tests/transaction_test_util.go @@ -8,6 +8,7 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core/types" + "github.com/ethereum/go-ethereum/logger/glog" "github.com/ethereum/go-ethereum/rlp" ) @@ -44,14 +45,14 @@ func RunTransactionTests(file string) error { for name, test := range bt { // if the test should be skipped, return if skipTest[name] { - fmt.Println("Skipping state test", name) + glog.Infoln("Skipping transaction test", name) return nil } // test the block if err := runTest(test); err != nil { return err } - fmt.Println("Transaction test passed: ", name) + glog.Infoln("Transaction test passed: ", name) } return nil -- cgit