avoid extraneous error logging on card enumeration

This commit is contained in:
Craig Raw
2026-01-13 14:07:52 +02:00
parent f28f15df66
commit cf15760d34
2 changed files with 2 additions and 2 deletions
@@ -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();