mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-04 21:36:45 +00:00
reduce log level for no card reader errors
This commit is contained in:
parent
10e751d6e1
commit
4ab33a373c
1 changed files with 2 additions and 0 deletions
|
@ -99,6 +99,8 @@ public abstract class CardApi {
|
|||
Throwable cause = Throwables.getRootCause(e);
|
||||
if(cause.getMessage().equals("SCARD_E_NO_SERVICE")) {
|
||||
recoverNoService();
|
||||
} else if(cause.getMessage().equals("SCARD_E_NO_READERS_AVAILABLE")) {
|
||||
log.info("Error detecting card terminals", e);
|
||||
} else {
|
||||
log.error("Error detecting card terminals", e);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue