class documentation

class CallbackFilter(logging.Filter): (source)

View In Hierarchy

A logging filter that checks the return value of a given callable (which takes the record-to-be-logged as its only parameter) to decide whether to log a record.

Method __init__ Undocumented
Method filter Undocumented
Instance Variable callback Undocumented
def __init__(self, callback): (source)

Undocumented

def filter(self, record): (source)

Undocumented

callback = (source)

Undocumented