(self, caller_info, msg)
| 60 | return osp.join("MCSL2/Logs", f"MCSL2_{self.time}.log") |
| 61 | |
| 62 | def _template(self, caller_info, msg) -> str: |
| 63 | return f"{caller_info['module']}.{caller_info['function']}, at line {caller_info['line']} | {msg}" # noqa: E501 |
| 64 | |
| 65 | def info(self, msg: str): |
| 66 | frame = getframeinfo(currentframe().f_back) |