Log debug message msg: Message to log
(msg)
| 68 | |
| 69 | @staticmethod |
| 70 | def debug(msg): |
| 71 | """Log debug message |
| 72 | msg: Message to log |
| 73 | """ |
| 74 | logging.debug(msg) |
| 75 | sys.stdout.write(msg + "\n") |
| 76 | |
| 77 | @staticmethod |
| 78 | def info(msg): |
nothing calls this directly
no outgoing calls
no test coverage detected