fix: add missing debug() method to RDAgentLog

This commit is contained in:
TPTBusiness
2026-05-06 21:25:59 +02:00
parent 584bf9d955
commit 669263db37
+3
View File
@@ -160,6 +160,9 @@ class RDAgentLog(SingletonBaseClass):
log_func = getattr(patched_logger, level)
log_func(msg)
def debug(self, msg: str, *, tag: str = "", raw: bool = False) -> None:
self._log("debug", msg, tag=tag, raw=raw)
def info(self, msg: str, *, tag: str = "", raw: bool = False) -> None:
self._log("info", msg, tag=tag, raw=raw)