Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/blue-yonder/cee_syslog_handler

Python Syslog Logging Handler with CEE Support
https://github.com/blue-yonder/cee_syslog_handler

cee logging python syslog

Last synced: about 2 months ago
JSON representation

Python Syslog Logging Handler with CEE Support

Awesome Lists containing this project

README

        

==================
cee_syslog_handler
==================

.. image:: https://travis-ci.org/blue-yonder/cee_syslog_handler.svg?branch=master
:target: https://travis-ci.org/blue-yonder/cee_syslog_handler

Python Syslog Logging Handler with CEE Support

Usage::

from cee_syslog_handler import CeeSysLogHandler
import logging

logger = logging.getLogger('log')
logger.setLevel(logging.DEBUG)

ch = CeeSysLogHandler(address=("10.2.160.20", 514))
ch.setLevel(logging.DEBUG)
logger.addHandler(ch)

logger.info("test")