(self, msg: str)
| 121 | self.logger.trace(self._template(caller_info, msg)) |
| 122 | |
| 123 | def debug(self, msg: str): |
| 124 | frame = getframeinfo(currentframe().f_back) |
| 125 | caller_info = { |
| 126 | "module": getmodulename(frame.filename), |
| 127 | "filename": frame.filename, |
| 128 | "line": frame.lineno, |
| 129 | "function": frame.function, |
| 130 | } |
| 131 | self.logger.debug(self._template(caller_info, msg)) |
| 132 | |
| 133 | def critical(self, exc: Optional[Exception] = None, msg: Optional[str] = ""): |
| 134 | frame = getframeinfo(currentframe().f_back) |
no test coverage detected