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