1
0
Fork 0
ynh-apps_tools/appslib/logging_sender.py

40 lines
967 B
Python
Raw Normal View History

#!/usr/bin/env python3
import subprocess
from shutil import which
import logging
import logging.handlers
2024-02-24 18:41:11 +01:00
def send_to_matrix(message: str) -> None:
if which("sendxmpppy") is None:
logging.warning("Could not send error via xmpp.")
return
subprocess.call(["sendxmpppy", message], stdout=subprocess.DEVNULL)
2024-02-08 22:18:59 +01:00
class LogSenderHandler(logging.Handler):
def __init__(self):
logging.Handler.__init__(self)
self.is_logging = False
def emit(self, record):
2024-02-24 18:41:11 +01:00
msg = f"[Apps tools error] {record.msg}"
send_to_matrix(msg)
@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)
def enable():
2024-02-08 22:18:59 +01:00
"""Enables the LogSenderHandler"""
LogSenderHandler.add(logging.ERROR)