class FilteringLogObserver: (source)
Implements interfaces: twisted.logger.ILogObserver
ILogObserver that wraps another ILogObserver, but filters out events based on applying a series of ILogFilterPredicates.| Method | __call__ |
Forward to next observer if predicate allows it. |
| Method | __init__ |
No summary |
| Instance Variable | _negativeObserver |
Undocumented |
| Instance Variable | _observer |
Undocumented |
| Instance Variable | _shouldLogEvent |
Undocumented |
| Parameters | |
observer:ILogObserver | An observer to which this observer will forward events when predictates yield a positive result. |
predicates:Iterable[ | Predicates to apply to events before forwarding to the wrapped observer. |
negativeObserver:ILogObserver | An observer to which this observer will forward events when predictates yield a negative result. |