Skip to content

Commit ab6d7e8

Browse files
committed
Merge branch 'startup-exception' [#15]
2 parents 1ff1a20 + b233a7c commit ab6d7e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
try:
3030
module_path = 'ext.app.{}'.format(app_file)
3131
import_module(module_path)
32-
except Exception as e:
33-
helpers.log(str(e))
32+
except Exception:
33+
helpers.logger.exception('Exception raised when importing app code')
3434

3535
#######################
3636
## Start Application ##

0 commit comments

Comments
 (0)