From 23a5d64fd059bb8bdf02781608a15b8b1bdbdfd2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= <peterke@gmail.com>
Date: Wed, 22 Feb 2017 16:58:00 +0200
Subject: accounts, cmd: port packages over to the new logging system

---
 accounts/abi/bind/util.go | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

(limited to 'accounts/abi/bind/util.go')

diff --git a/accounts/abi/bind/util.go b/accounts/abi/bind/util.go
index 88234688e..ca79694ef 100644
--- a/accounts/abi/bind/util.go
+++ b/accounts/abi/bind/util.go
@@ -29,18 +29,19 @@ import (
 // WaitMined waits for tx to be mined on the blockchain.
 // It stops waiting when the context is canceled.
 func WaitMined(ctx context.Context, b DeployBackend, tx *types.Transaction) (*types.Receipt, error) {
-	queryTicker := time.NewTicker(1 * time.Second)
+	queryTicker := time.NewTicker(time.Second)
 	defer queryTicker.Stop()
-	loghash := tx.Hash().Hex()[:8]
+
+	logger := log.New("hash", tx.Hash().Hex()[:8])
 	for {
 		receipt, err := b.TransactionReceipt(ctx, tx.Hash())
 		if receipt != nil {
 			return receipt, nil
 		}
 		if err != nil {
-			log.Trace(fmt.Sprintf("tx %x error: %v", loghash, err))
+			logger.Trace("Receipt retrieval failed", "error", err)
 		} else {
-			log.Trace(fmt.Sprintf("tx %x not yet mined...", loghash))
+			logger.Trace("Transaction not yet mined")
 		}
 		// Wait for the next round.
 		select {
-- 
cgit v1.2.3