Add the specified logger as a child of this placeholder.
(self, alogger)
| 1271 | self.loggerMap = { alogger : None } |
| 1272 | |
| 1273 | def append(self, alogger): |
| 1274 | """ |
| 1275 | Add the specified logger as a child of this placeholder. |
| 1276 | """ |
| 1277 | if alogger not in self.loggerMap: |
| 1278 | self.loggerMap[alogger] = None |
| 1279 | |
| 1280 | # |
| 1281 | # Determine which class to use when instantiating loggers. |
no outgoing calls