I use phrase !Silent to determine where the log record will be saved.
If log record message contains !Silent at the beginning of string, my Filter subclass rejects this message in a StreamHandler. But message is passed to other handlers such as FileHandler or MemoryHandler, and is passed with !Silent phrase.
I created simple Formatter subclass to strip this phrase, including white characters on beginning of string, but I have trouble with applying this formatter to handlers.
In many places of my application i modify root logger handlers, creating, adding and removing it. Each of these handlers should have my Formatter subclass, but adding manually to each of it is little uncomfortable.
I looking for way to apply Formatter class globally to root logger, or overwrite root logger addHandler method to add filter to handler before adding it to root logger. Or simpler way if exist.