Do whatever it takes to actually log the specified logging record. This version is intended to be implemented by subclasses and so raises a NotImplementedError.
(self, record)
| 999 | return fmt.format(record) |
| 1000 | |
| 1001 | def emit(self, record): |
| 1002 | """ |
| 1003 | Do whatever it takes to actually log the specified logging record. |
| 1004 | |
| 1005 | This version is intended to be implemented by subclasses and so |
| 1006 | raises a NotImplementedError. |
| 1007 | """ |
| 1008 | raise NotImplementedError('emit must be implemented ' |
| 1009 | 'by Handler subclasses') |
| 1010 | |
| 1011 | def handle(self, record): |
| 1012 | """ |