Skip to content

Instantly share code, notes, and snippets.

@engFelipeMonteiro
engFelipeMonteiro / pysyslog.py
Created August 7, 2017 16:04 — forked from marcelom/pysyslog.py
Tiny Python Syslog Server
#!/usr/bin/env python
## Tiny Syslog Server in Python.
##
## This is a tiny syslog server that is able to receive UDP based syslog
## entries on a specified port and save them to a file.
## That's it... it does nothing else...
## There are a few configuration parameters.
LOG_FILE = 'youlogfile.log'