[mod_python] apache log handler
# A log handler for mod-python
- from mod_python import apache
- import logging
- class ProxyLogThing:
- """A proxy for default Apache logging."""
- def __init__(self):
- # No need to do anything.
- def log_error(msg, lvl):
- apache.log_error(msg, lvl)
