None
Project description
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")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.