1
0
Fork 0
ynh-apps_tools/appslib/xmpplogger.py
Félix Piédallu b18ed48de2 Rework list_builder.py
FAAAAAASTEEEEEEER
2024-02-08 22:20:17 +01:00

33 lines
790 B
Python

#!/usr/bin/env python3
import subprocess
from shutil import which
import logging
import logging.handlers
class XmppLogHandler(logging.Handler):
def __init__(self):
logging.Handler.__init__(self)
self.is_logging = False
def emit(self, record):
if which("sendxmpppy") is None:
return
msg = f"[Applist builder error] {record.msg}"
subprocess.call(["sendxmpppy", msg], stdout=subprocess.DEVNULL)
@classmethod
def add(cls, level=logging.ERROR):
if not logging.getLogger().handlers:
logging.basicConfig()
# create handler
handler = cls()
handler.setLevel(level)
# add the handler
logging.getLogger().handlers.append(handler)
XmppLogHandler.add(logging.ERROR)