Skip to content

Latest commit

 

History

History
26 lines (15 loc) · 553 Bytes

README.rst

File metadata and controls

26 lines (15 loc) · 553 Bytes

cee_syslog_handler

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

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")