add MBNA parser

This commit is contained in:
2025-04-24 15:32:33 -07:00
parent f453222bf7
commit 81c7bb94a4
2 changed files with 37 additions and 3 deletions

View File

@@ -78,8 +78,8 @@ async def process_message(msg_b: bytes):
trans = parser.extract(msg)
info("Submitting transaction to Actual: %s", trans)
await submit_transaction(trans)
except TransactionParsingFailed:
warning("Unable to parse message")
except TransactionParsingFailed as e:
warning("Unable to parse message %s", e)
except Exception as e:
warning("Unexpected exception %s", e)