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