diff --git a/web/run.py b/web/run.py index 8b00505..edf8c4e 100755 --- a/web/run.py +++ b/web/run.py @@ -137,7 +137,7 @@ PARAMETERS = { } -# ENV ######################################################################### +# SETUP ENVIRONMENT ########################################################### environ['SPACEPY'] = CACHE_DIR environ['CDF_LIB'] = CDF_LIB @@ -153,6 +153,13 @@ else: log.info("Starting Flask app...") +def handle_error(e): + log.error(e) + return str(e) # wish we could use the default error renderer here + +app.register_error_handler(Exception, handle_error) + + # SETUP JINJA2 TEMPLATE ENGINE ################################################ def static_global(filename): -- libgit2 0.21.2