mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2026-08-10 16:43:14 +00:00
avoid extraneous error logging on card enumeration
This commit is contained in:
@@ -93,7 +93,7 @@ public class Hwi {
|
||||
} catch(CardNotPresentException e) {
|
||||
//ignore
|
||||
} catch(CardException e) {
|
||||
log.error("Error reading card", e);
|
||||
log.info("Error reading card", e);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -140,7 +140,7 @@ public class CardTransport {
|
||||
}
|
||||
}
|
||||
} catch(CborException e) {
|
||||
log.error("CBOR encoding error", e);
|
||||
throw new CardException("CBOR encoding error", e);
|
||||
}
|
||||
|
||||
return new JsonObject();
|
||||
|
||||
Reference in New Issue
Block a user