We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39fe491 commit 59fc614Copy full SHA for 59fc614
web.py
@@ -1,6 +1,7 @@
1
import os
2
from importlib import import_module
3
import builtins
4
+import traceback
5
6
import flask
7
from rdflib.namespace import Namespace
@@ -30,7 +31,7 @@
30
31
module_path = 'ext.app.{}'.format(app_file)
32
import_module(module_path)
33
except Exception as e:
- helpers.log(str(e))
34
+ helpers.log(''.join(traceback.format_exception(None, e, e.__traceback__)))
35
36
#######################
37
## Start Application ##
0 commit comments