11
Wie konfiguriere ich die Protokollierung in Syslog in Python?
Ich kann mich nicht mit Pythons loggingModul beschäftigen. Meine Anforderungen sind sehr einfach: Ich möchte einfach alles in Syslog protokollieren. Nachdem ich die Dokumentation gelesen hatte, kam ich auf dieses einfache Testskript: import logging import logging.handlers my_logger = logging.getLogger('MyLogger') my_logger.setLevel(logging.DEBUG) handler = logging.handlers.SysLogHandler() my_logger.addHandler(handler) my_logger.debug('this is debug') my_logger.critical('this is critical') …