class documentation

class CallbackFilter(logging.Filter):

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):

Undocumented

def filter(self, record):

Undocumented

callback =

Undocumented