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)
| 953 | return fmt.format(record) |
| 954 | |
| 955 | def emit(self, record): |
| 956 | """ |
| 957 | Do whatever it takes to actually log the specified logging record. |
| 958 | |
| 959 | This version is intended to be implemented by subclasses and so |
| 960 | raises a NotImplementedError. |
| 961 | """ |
| 962 | raise NotImplementedError('emit must be implemented ' |
| 963 | 'by Handler subclasses') |
| 964 | |
| 965 | def handle(self, record): |
| 966 | """ |