Simple WSGI middleware that helps to log messages into JavaScript console object
Project description
It provides a simple WSGI middleware that helps to log messages into JavaScript console object. For example, if you log messages like:
logger = logging.getLogger('my.logger') logger.warning('warning message') logger.debug('debug message')
The middleware automatically appends codes like following JavaScript:
<script> // <![CDATA[ if (console) { console.warn('my.logger: warning message'); console.debug('my.logger: debug message'); } // ]]> </script>
Installation
You can install it by downloading from PyPI through pip or easy_install:
$ pip install log2jsconsole
How to use
Assume that your WSGI application name is app:
from yourapp import app from log2jsconsole import LoggingMiddleware app = LoggingMiddleware(app)
Or you can add this as a filter of Python Paste:
[filter:log]
use = egg:log2jsconsole
auto_install = True
Changelog
Version 0.4
Released on June 7, 2013.
Support for Python Paste filter entry point. [#1 by Roberto De Almeida]
Fixed incompatibile signature (according to PEP 333) of start_response. [#1 by Roberto De Almeida]
Version 0.3
Released on November 28, 2011.
Fixed a bug of Content-Type detection.
Version 0.2
Released on November 28, 2011.
Fixed a bug of Content-Type detection.
Version 0.1
Initially released on November 26, 2011.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file log2jsconsole-0.4.tar.gz
.
File metadata
- Download URL: log2jsconsole-0.4.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7d5fd0114cf87bf06ecae97aebadecc98ec14f1e87165bf27ea3ae23e4904c9a |
|
MD5 | ce67c99c84482ef1ba25ea722322bdb0 |
|
BLAKE2b-256 | 7d840412c8ec0693ac7056c9370834820327441aa77cb42091782491ea8a8bee |