From d4c150f23734ccee2a93f601e897d58ca405fa9b Mon Sep 17 00:00:00 2001 From: Guillaume Ballet Date: Tue, 4 Jun 2019 16:20:40 +0200 Subject: [PATCH] scwallet: don't error when pcsc socket is missing --- cmd/utils/flags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index 7e19ebc0cb..26fee3390d 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.Error("Failed to verify smartcard daemon path", "path", path, "err", err) + log.Info("smartcard daemon scoket path not found, disabling", "path", path, "err", err) return } if fi.Mode()&os.ModeType != os.ModeSocket {