Log warn message msg: Message to log
(msg)
| 84 | |
| 85 | @staticmethod |
| 86 | def warn(msg): |
| 87 | """Log warn message |
| 88 | msg: Message to log |
| 89 | """ |
| 90 | logging.warning(msg) |
| 91 | sys.stdout.write(msg + "\n") |
| 92 | |
| 93 | @staticmethod |
| 94 | def error(msg): |
no outgoing calls
no test coverage detected