(self, message, endwithnewline=True)
| 28 | self.log(message, 'INFO', endwithnewline) |
| 29 | '''warning''' |
| 30 | def warning(self, message, endwithnewline=True): |
| 31 | self.log(message, 'WARNING', endwithnewline) |
| 32 | '''error''' |
| 33 | def error(self, message, endwithnewline=True): |
| 34 | self.log(message, 'ERROR', endwithnewline) |