mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-07-27 15:37:44 +00:00
fix: add missing debug() method to RDAgentLog
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user