MCPcopy Index your code
hub / github.com/python/cpython / emit

Method emit

Lib/logging/__init__.py:1004–1012  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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 """

Callers 4

handleMethod · 0.95
emitMethod · 0.45
waFunction · 0.45
d3.min.jsFile · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected