(self, msg: str)
| 73 | self.logger.info(self._template(caller_info, msg)) |
| 74 | |
| 75 | def warning(self, msg: str): |
| 76 | frame = getframeinfo(currentframe().f_back) |
| 77 | caller_info = { |
| 78 | "module": getmodulename(frame.filename), |
| 79 | "filename": frame.filename, |
| 80 | "line": frame.lineno, |
| 81 | "function": frame.function, |
| 82 | } |
| 83 | self.logger.warning(self._template(caller_info, msg)) |
| 84 | |
| 85 | def success(self, msg: str): |
| 86 | frame = getframeinfo(currentframe().f_back) |
no test coverage detected