| 1 | class Logger: |
| 2 | |
| 3 | @staticmethod |
| 4 | def error(str): |
| 5 | print("\033[31m"+"ERROR: "+str+"\033[0m") |
| 6 | |
| 7 | @staticmethod |
| 8 | def info(str): |
| 9 | print("\033[32m"+"INFO: "+"\033[0m"+str) |
| 10 | |
| 11 | @staticmethod |
| 12 | def warning(str): |
| 13 | print("\033[33m"+"WARN: "+str+"\033[0m") |
nothing calls this directly
no outgoing calls
no test coverage detected