Add the specified handler to this logger.
(self, hdlr)
| 1684 | self.callHandlers(record) |
| 1685 | |
| 1686 | def addHandler(self, hdlr): |
| 1687 | """ |
| 1688 | Add the specified handler to this logger. |
| 1689 | """ |
| 1690 | with _lock: |
| 1691 | if not (hdlr in self.handlers): |
| 1692 | self.handlers.append(hdlr) |
| 1693 | |
| 1694 | def removeHandler(self, hdlr): |
| 1695 | """ |