aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/utils/flags.go
diff options
context:
space:
mode:
authorMartin Holst Swende <martin@swende.se>2019-06-05 03:17:12 +0800
committerGitHub <noreply@github.com>2019-06-05 03:17:12 +0800
commit645756cda5becf364ec9442891e9b7a7945e2cb3 (patch)
tree69a381f5794b87192f9af3bca9b6e6f535e5871a /cmd/utils/flags.go
parentd97f0372b19c0d58261c8f357ddc27cb3265b5a4 (diff)
downloadgo-tangerine-645756cda5becf364ec9442891e9b7a7945e2cb3.tar
go-tangerine-645756cda5becf364ec9442891e9b7a7945e2cb3.tar.gz
go-tangerine-645756cda5becf364ec9442891e9b7a7945e2cb3.tar.bz2
go-tangerine-645756cda5becf364ec9442891e9b7a7945e2cb3.tar.lz
go-tangerine-645756cda5becf364ec9442891e9b7a7945e2cb3.tar.xz
go-tangerine-645756cda5becf364ec9442891e9b7a7945e2cb3.tar.zst
go-tangerine-645756cda5becf364ec9442891e9b7a7945e2cb3.zip
cmd/utils: close quote (#19665)
Diffstat (limited to 'cmd/utils/flags.go')
-rw-r--r--cmd/utils/flags.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go
index 7e8463925..002d37f16 100644
--- a/cmd/utils/flags.go
+++ b/cmd/utils/flags.go
@@ -1161,7 +1161,7 @@ func setSmartCard(ctx *cli.Context, cfg *node.Config) {
// Sanity check that the smartcard path is valid
fi, err := os.Stat(path)
if err != nil {
- log.Info("Smartcard socket not found, disabling", err", err)
+ log.Info("Smartcard socket not found, disabling", "err", err)
return
}
if fi.Mode()&os.ModeType != os.ModeSocket {