Add the specified logger as a child of this placeholder.
(self, alogger)
| 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. |
no outgoing calls
no test coverage detected