Merge pull request #1233 from lnbits/fix/cashu/logging

cashu: add more logging
This commit is contained in:
calle 2022-12-22 19:58:47 +01:00 committed by GitHub
commit e3ed2c4e6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -299,14 +299,20 @@ async def melt_coins(
cashu.wallet, invoice_obj.payment_hash
)
if status.paid == True:
logger.debug("Cashu: Payment successful, invalidating proofs")
logger.debug(
f"Cashu: Payment successful, invalidating proofs for {invoice_obj.payment_hash}"
)
await ledger._invalidate_proofs(proofs)
else:
logger.debug(f"Cashu: Payment failed for {invoice_obj.payment_hash}")
except Exception as e:
logger.debug(f"Cashu: Exception for {invoice_obj.payment_hash}: {e}")
raise HTTPException(
status_code=HTTPStatus.BAD_REQUEST,
detail=f"Cashu: {str(e)}",
)
finally:
logger.debug(f"Cashu: Unset pending for {invoice_obj.payment_hash}: {e}")
# delete proofs from pending list
await ledger._unset_proofs_pending(proofs)