fix: do not hide Exception message
This commit is contained in:
parent
7e2b1e65a0
commit
63ea3369d3
1 changed files with 2 additions and 2 deletions
|
|
@ -293,9 +293,9 @@ def send_admin_user_to_saas():
|
|||
json=payload,
|
||||
)
|
||||
logger.success("sent admin user to saas application")
|
||||
except:
|
||||
except Exception as e:
|
||||
logger.error(
|
||||
f"error sending admin user to saas: {settings.lnbits_saas_callback}"
|
||||
f"error sending admin user to saas: {settings.lnbits_saas_callback}. Error: {str(e)}"
|
||||
)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue