Ensure that children of the placeholder ph are connected to the specified logger.
(self, ph, alogger)
| 1435 | alogger.parent = rv |
| 1436 | |
| 1437 | def _fixupChildren(self, ph, alogger): |
| 1438 | """ |
| 1439 | Ensure that children of the placeholder ph are connected to the |
| 1440 | specified logger. |
| 1441 | """ |
| 1442 | name = alogger.name |
| 1443 | namelen = len(name) |
| 1444 | for c in ph.loggerMap.keys(): |
| 1445 | #The if means ... if not c.parent.name.startswith(nm) |
| 1446 | if c.parent.name[:namelen] != name: |
| 1447 | alogger.parent = c.parent |
| 1448 | c.parent = alogger |
| 1449 | |
| 1450 | def _clear_cache(self): |
| 1451 | """ |