MCPcopy Index your code
hub / github.com/RustPython/RustPython / append

Method append

Lib/logging/__init__.py:1308–1313  ·  view source on GitHub ↗

Add the specified logger as a child of this placeholder.

(self, alogger)

Source from the content-addressed store, hash-verified

1306 self.loggerMap = { alogger : None }
1307
1308 def append(self, alogger):
1309 """
1310 Add the specified logger as a child of this placeholder.
1311 """
1312 if alogger not in self.loggerMap:
1313 self.loggerMap[alogger] = None
1314
1315#
1316# Determine which class to use when instantiating loggers.

Callers 10

_install_handlersFunction · 0.45
_install_loggersFunction · 0.45
configureMethod · 0.45
configure_handlerMethod · 0.45
addFilterMethod · 0.45
_addHandlerRefFunction · 0.45
_fixupParentsMethod · 0.45
addHandlerMethod · 0.45
getFilesToDeleteMethod · 0.45
emitMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected