X-Git-Url: http://www.dolda2000.com/gitweb/?p=ashd.git;a=blobdiff_plain;f=python3%2Fashd%2Fwsgidir.py;h=c2efcca50d0650ca2a78ebfff1ff3c5d5731da7a;hp=31afd3b524079e6c1c68b6a236d0c7bf0109698d;hb=58ee5c4ab4ce9be692277b520de72735494bd9f7;hpb=47da1b3d5982ece5d8fd1f777b8471332f0d341a diff --git a/python3/ashd/wsgidir.py b/python3/ashd/wsgidir.py index 31afd3b..c2efcca 100644 --- a/python3/ashd/wsgidir.py +++ b/python3/ashd/wsgidir.py @@ -33,11 +33,13 @@ argument `.fpy=my.module.foohandler' can be given to pass requests for functions, you may want to use the getmod() function in this module. """ -import os, threading, types, importlib, getopt +import sys, os, threading, types, logging, importlib, getopt from . import wsgiutil __all__ = ["application", "wmain", "getmod", "cachedmod", "chain"] +log = logging.getLogger("wsgidir") + class cachedmod(object): """Cache entry for modules loaded by getmod() @@ -180,7 +182,11 @@ def chain(env, startreq): object. """ path = env["SCRIPT_FILENAME"] - mod = getmod(path) + try: + mod = getmod(path) + except Exception: + log.error("Exception occurred when loading %s" % path, exc_info=sys.exc_info()) + return wsgiutil.simpleerror(env, startreq, 500, "Internal Error", "Could not load WSGI handler.") entry = None if mod is not None: with mod.lock: