Part of twisted.python.log View Source View In Hierarchy
Output twisted messages to Python standard library logging 
module.
| Method | __init__ | |
| Method | emit | Receive a twisted log entry, format it and bridge it to python. | 
| Method | start | Start observing log events. | 
| Method | stop | Stop observing log events. | 
| Parameters | loggerName | identifier used for getting logger.
 (type: str
) | 
Receive a twisted log entry, format it and bridge it to python.
By default the logging level used is info; log.err produces error level, and you can customize the level by using thelogLevel key:
>>> log.msg('debugging', logLevel=logging.DEBUG)