Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/blue-yonder/cee_syslog_handler
- Owner: blue-yonder
- License: bsd-3-clause
- Created: 2014-09-11T12:01:14.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2020-10-26T09:18:47.000Z (about 4 years ago)
- Last Synced: 2024-10-31T06:49:42.347Z (2 months ago)
- Topics: cee, logging, python, syslog
- Language: Python
- Homepage:
- Size: 62.5 KB
- Stars: 7
- Watchers: 18
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.rst
- License: LICENSE.txt
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_handlerPython Syslog Logging Handler with CEE Support
Usage::
from cee_syslog_handler import CeeSysLogHandler
import logginglogger = 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")