MCPcopy Create free account
hub / github.com/RustPython/RustPython / emit

Method emit

Lib/logging/__init__.py:1001–1009  ·  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

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

Callers 2

handleMethod · 0.95
emitMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected