# debug.ini # # Debugging configuration for use with paster/WSGI # [loggers] keys = root, wsgi [handlers] keys = console, accesslog [formatters] keys = generic, accesslog [formatter_generic] format = %(asctime)s %(levelname)s [%(name)s] %(message)s [formatter_accesslog] format = %(message)s [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 [filter:translogger] use = egg:Paste#translogger setup_console_handler = False logger_name = wsgi [filter-app:main] # Change the last part from 'ajax' to 'pdb' for a post-mortem debugger # on the console: use = egg:z3c.evalexception#ajax next = zope [app:zope] use = egg:waeup.fceokene#debug filter-with = translogger exempt-exceptions = zope.security.interfaces.IUnauthorized [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