Log info message msg: Message to log
(msg)
| 76 | |
| 77 | @staticmethod |
| 78 | def info(msg): |
| 79 | """"Log info message |
| 80 | msg: Message to log |
| 81 | """ |
| 82 | logging.info(msg) |
| 83 | sys.stdout.write(msg + "\n") |
| 84 | |
| 85 | @staticmethod |
| 86 | def warn(msg): |
no outgoing calls
no test coverage detected