(self, msg: str, level=logging.INFO)
| 126 | self.log('log will print out in {}'.format(self.place)) |
| 127 | |
| 128 | def log(self, msg: str, level=logging.INFO): |
| 129 | self.logger.log(level, msg) |
| 130 | |
| 131 | def print(self, *args, **kwargs): |
| 132 | self.log(*args, *kwargs) |
no outgoing calls
no test coverage detected