Logs `message` to the `info` log, and also prints to stdout.
(message: str)
| 36 | |
| 37 | |
| 38 | def _log(message: str): |
| 39 | """Logs `message` to the `info` log, and also prints to stdout.""" |
| 40 | logging.info(message) |
| 41 | print(message) |
| 42 | |
| 43 | |
| 44 | logging.ABSLLogger.register_frame_to_skip(__file__, _log.__name__) |
no test coverage detected