chore: log error in debug mode

This commit is contained in:
Vlad Stan 2022-12-23 22:21:14 +02:00
parent 8a447ecc4f
commit 50addd73dd

View File

@ -46,6 +46,7 @@ async def api_charge_create(
**{"paid": charge.paid},
}
except Exception as ex:
logger.debug(ex)
raise HTTPException(
status_code=HTTPStatus.INTERNAL_SERVER_ERROR, detail=str(ex)
)