X-Git-Url: http://www.dolda2000.com/gitweb/?p=ashd.git;a=blobdiff_plain;f=python%2Fashd%2Fwsgidir.py;h=6bf00b65f58f0656c966c21d03910d2309670af1;hp=2da3a94305c80324a52b001176fc101c9e2f13df;hb=58ee5c4ab4ce9be692277b520de72735494bd9f7;hpb=47da1b3d5982ece5d8fd1f777b8471332f0d341a diff --git a/python/ashd/wsgidir.py b/python/ashd/wsgidir.py index 2da3a94..6bf00b6 100644 --- a/python/ashd/wsgidir.py +++ b/python/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, getopt +import sys, os, threading, types, logging, getopt import wsgiutil __all__ = ["application", "wmain", "getmod", "cachedmod", "chain"] +log = logging.getLogger("wsgidir") + class cachedmod(object): """Cache entry for modules loaded by getmod() @@ -192,7 +194,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: mod.lock.acquire()