wsgilog 0.3
WSGI logging and event reporting middleware.
Supports logging events in WSGI applications to
STDOUT, time rotated log files, email, syslog, and web servers. Also
supports catching and sending HTML-formatted exception tracebacks to a
web browser for debugging.
# Simple usage example:
from wsgilog import log
@log(tohtml=True, tofile='wsgi.log', tostream=True, toprint=True)
def app(environ, start_response):
print 'STDOUT is logged.'
environ['wsgilog.logger'].info('This information is logged.')
# Exception will be logged and sent to the browser formatted as HTML.
raise Exception()
if __name__ == '__main__':
from wsgiref.simple_server import make_server
http = make_server('', 8080, app)
http.serve_forever()
| File | Type | Py Version | Uploaded on | Size | # downloads |
|---|---|---|---|---|---|
| wsgilog-0.3.tar.bz2 (md5) | Source | 2011-05-07 | 4KB | 271 | |
| wsgilog-0.3.tar.gz (md5) | Source | 2011-05-07 | 4KB | 257 | |
| wsgilog-0.3.zip (md5) | Source | 2011-05-07 | 7KB | 594 | |
- Author: L. C. Rees
- Keywords: WSGI logging middleware web http
- License: BSD
-
Categories
- Development Status :: 4 - Beta
- Environment :: Web Environment
- License :: OSI Approved :: BSD License
- Natural Language :: English
- Operating System :: OS Independent
- Programming Language :: Python
- Topic :: Internet :: WWW/HTTP :: Site Management
- Topic :: Internet :: WWW/HTTP :: WSGI
- Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
- Topic :: System :: Logging
- Topic :: System :: Monitoring
- Package Index Owner: lcrees
- DOAP record: wsgilog-0.3.xml
