diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-02-22 22:58:00 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2017-02-23 18:16:46 +0800 |
commit | 23a5d64fd059bb8bdf02781608a15b8b1bdbdfd2 (patch) | |
tree | 143cd04a9fe002b25c146e7c0b5aacfbe62092eb /cmd/geth/accountcmd.go | |
parent | 61e6bb12478740d614c8effd330f881f962b7b84 (diff) | |
download | dexon-23a5d64fd059bb8bdf02781608a15b8b1bdbdfd2.tar dexon-23a5d64fd059bb8bdf02781608a15b8b1bdbdfd2.tar.gz dexon-23a5d64fd059bb8bdf02781608a15b8b1bdbdfd2.tar.bz2 dexon-23a5d64fd059bb8bdf02781608a15b8b1bdbdfd2.tar.lz dexon-23a5d64fd059bb8bdf02781608a15b8b1bdbdfd2.tar.xz dexon-23a5d64fd059bb8bdf02781608a15b8b1bdbdfd2.tar.zst dexon-23a5d64fd059bb8bdf02781608a15b8b1bdbdfd2.zip |
accounts, cmd: port packages over to the new logging system
Diffstat (limited to 'cmd/geth/accountcmd.go')
-rw-r--r-- | cmd/geth/accountcmd.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/geth/accountcmd.go b/cmd/geth/accountcmd.go index b7c411e82..0b0be7938 100644 --- a/cmd/geth/accountcmd.go +++ b/cmd/geth/accountcmd.go @@ -204,11 +204,11 @@ func unlockAccount(ctx *cli.Context, ks *keystore.KeyStore, address string, i in password := getPassPhrase(prompt, false, i, passwords) err = ks.Unlock(account, password) if err == nil { - log.Info(fmt.Sprintf("Unlocked account %x", account.Address)) + log.Info("Unlocked account", "address", account.Address.Hex()) return account, password } if err, ok := err.(*keystore.AmbiguousAddrError); ok { - log.Info(fmt.Sprintf("Unlocked account %x", account.Address)) + log.Info("Unlocked account", "address", account.Address.Hex()) return ambiguousAddrRecovery(ks, err, password), password } if err != keystore.ErrDecrypt { |