# debug.ini # # Debugging configuration for use with paster/WSGI and diazo # [loggers] keys = root, wsgi [handlers] keys = console, accesslog, asynclog, async_tracelog [formatters] keys = generic, accesslog [formatter_generic] format = %(asctime)s %(levelname)s [%(name)s] %(message)s [formatter_accesslog] format = %(message)s [handler_asynclog] class = FileHandler args = (os.path.join(r'${zope_conf:logfiles}', 'async.log'), 'a') level = INFO formatter = generic [handler_async_tracelog] class = FileHandler args = (os.path.join(r'${zope_conf:logfiles}', 'async_trace.log'), 'a') level = INFO formatter = generic [handler_console] class = StreamHandler args = (sys.stderr,) level = NOTSET formatter = generic [handler_accesslog] class = FileHandler args = (os.path.join(r'${zope_conf:logfiles}', 'access.log'), 'a') level = INFO formatter = accesslog [logger_root] level = INFO handlers = console [logger_wsgi] level = INFO handlers = accesslog qualname = wsgi propagate = 0 [logger_async] level = INFO handlers = asynclog qualname = zc.async propagate = 0 [logger_async_trace] level = INFO handlers = async_tracelog qualname = zc.async.trace propagate = 0 [filter:translogger] use = egg:Paste#translogger setup_console_handler = False logger_name = wsgi [filter:debugger] # Change the last part from 'ajax' to 'pdb' for a post-mortem debugger # on the console: use = egg:z3c.evalexception#ajax [app:zope] use = egg:${kofa_params:devel_pkg}#debug exempt-exceptions = zope.security.interfaces.IUnauthorized [app:static] use = egg:Paste#static document_root = %(LAYOUT_DIR)s/static [app:static_custom] use = egg:Paste#static document_root = %(LAYOUT_CUSTOM_DIR)s/static/ [composite:main] use = egg:Paste#urlmap /static = static /static_custom = static_custom / = default [filter:theme] use = egg:diazo rules = file:///%(LAYOUT_CUSTOM_DIR)s/rules.xml prefix = / doctype = # set to false, if you don't want rules.xml being rebuild on each request debug = true [pipeline:default] pipeline = theme translogger debugger zope [server:main] use = egg:Paste#http host = ${kofa_params:host} port = ${kofa_params:base_port} [DEFAULT] # set the name of the zope.conf file zope_conf = %(here)s/zope.conf env_vars = ZC_ASYNC_UUID ${buildout:directory}/var/uuid1.txt # the directory where all real diazo config is done (no trailing slash) LAYOUT_DIR = ${buildout:directory}/sources/waeup.kofa/layout STATIC_DIR = %(LAYOUT_DIR)s/static LAYOUT_CUSTOM_DIR = ${buildout:directory}/layout STATIC_CUSTOM_DIR = %(LAYOUT_CUSTOM_DIR)s/static