aboutsummaryrefslogtreecommitdiffstats
path: root/accounts/keystore/watch.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2017-02-27 19:17:58 +0800
committerPéter Szilágyi <peterke@gmail.com>2017-02-27 19:17:58 +0800
commit46eea4d10533f9376e0d36255dfc1083e28d5bbc (patch)
tree4f80e73cfe0577cd83649446f2021857d9f41b2f /accounts/keystore/watch.go
parent0a63c3e3625e9f5e18f6c2a95934a37b1dcac6c7 (diff)
downloaddexon-46eea4d10533f9376e0d36255dfc1083e28d5bbc.tar
dexon-46eea4d10533f9376e0d36255dfc1083e28d5bbc.tar.gz
dexon-46eea4d10533f9376e0d36255dfc1083e28d5bbc.tar.bz2
dexon-46eea4d10533f9376e0d36255dfc1083e28d5bbc.tar.lz
dexon-46eea4d10533f9376e0d36255dfc1083e28d5bbc.tar.xz
dexon-46eea4d10533f9376e0d36255dfc1083e28d5bbc.tar.zst
dexon-46eea4d10533f9376e0d36255dfc1083e28d5bbc.zip
accounts, eth/downloader: use "err" instead of "error" in logs
Diffstat (limited to 'accounts/keystore/watch.go')
-rw-r--r--accounts/keystore/watch.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/accounts/keystore/watch.go b/accounts/keystore/watch.go
index ae97805be..f4d647791 100644
--- a/accounts/keystore/watch.go
+++ b/accounts/keystore/watch.go
@@ -66,7 +66,7 @@ func (w *watcher) loop() {
logger := log.New("path", w.ac.keydir)
if err := notify.Watch(w.ac.keydir, w.ev, notify.All); err != nil {
- logger.Trace("Failed to watch keystore folder", "error", err)
+ logger.Trace("Failed to watch keystore folder", "err", err)
return
}
defer notify.Stop(w.ev)