warning log
(self, string, end='\n')
| 61 | sys.stderr.write(f'{cstart}[ERR] {msg}{cend}') |
| 62 | |
| 63 | def warn(self, string, end='\n'): |
| 64 | """warning log""" |
| 65 | cstart = self._color(self.YELLOW) |
| 66 | cend = self._color(self.RESET) |
| 67 | sys.stderr.write(f'{cstart}[WARN] {string} {end}{cend}') |
| 68 | |
| 69 | def dbg(self, string, force=False): |
| 70 | """debug log""" |
no test coverage detected