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

Method append

Lib/logging/__init__.py:1311–1316  ·  view source on GitHub ↗

Add the specified logger as a child of this placeholder.

(self, alogger)

Source from the content-addressed store, hash-verified

1309 self.loggerMap = { alogger : None }
1310
1311 def append(self, alogger):
1312 """
1313 Add the specified logger as a child of this placeholder.
1314 """
1315 if alogger not in self.loggerMap:
1316 self.loggerMap[alogger] = None
1317
1318#
1319# 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