(self, message, *args)
| 265 | self.debug_record = [] |
| 266 | |
| 267 | def info(self, message, *args): |
| 268 | self.info_record.append(message % args) |
| 269 | |
| 270 | def debug(self, message, *args): |
| 271 | self.debug_record.append(message % args) |
no outgoing calls
no test coverage detected