fix: display an exception message when something happen during the demo app launch

This commit is contained in:
Éloi Rivard 2024-10-10 17:29:41 +02:00
parent 709019ede3
commit 53123fa3c4
No known key found for this signature in database
GPG key ID: 7EDA204EA57DD184

View file

@ -156,6 +156,6 @@ def create_app():
try:
populate(app)
except:
raise
app.logger.exception("Something happen during the app initialization")
return app