Call the handlers for the specified record. This method is used for unpickled records received from a socket, as well as those created locally. Logger-level filtering is applied.
(self, record)
| 1634 | self.handle(record) |
| 1635 | |
| 1636 | def handle(self, record): |
| 1637 | """ |
| 1638 | Call the handlers for the specified record. |
| 1639 | |
| 1640 | This method is used for unpickled records received from a socket, as |
| 1641 | well as those created locally. Logger-level filtering is applied. |
| 1642 | """ |
| 1643 | if (not self.disabled) and self.filter(record): |
| 1644 | self.callHandlers(record) |
| 1645 | |
| 1646 | def addHandler(self, hdlr): |
| 1647 | """ |
no test coverage detected