(
self,
message,
title="",
title_color="",
)
| 135 | self._log(title, title_color, message, logging.INFO) |
| 136 | |
| 137 | def warn( |
| 138 | self, |
| 139 | message, |
| 140 | title="", |
| 141 | title_color="", |
| 142 | ): |
| 143 | self._log(title, title_color, message, logging.WARN) |
| 144 | |
| 145 | def error(self, title, message=""): |
| 146 | self._log(title, Fore.RED, message, logging.ERROR) |
no test coverage detected