ds_stoa.utils.logger._context¶
Logger Context Filter
This module contains the context filter for the logger.
Classes¶
Context filter to add customized field in the logging |
|
Filter instances are used to perform arbitrary filtering of LogRecords. |
Module Contents¶
- class ds_stoa.utils.logger._context.ContextFilter(prefix: str | None = None)[source]¶
Bases:
logging.FilterContext filter to add customized field in the logging record. This filter is used to add a prefix to the log.
- class ds_stoa.utils.logger._context.FolderNameFilter(name='')[source]¶
Bases:
logging.FilterFilter instances are used to perform arbitrary filtering of LogRecords.
Loggers and Handlers can optionally use Filter instances to filter records as desired. The base filter class only allows events which are below a certain point in the logger hierarchy. For example, a filter initialized with “A.B” will allow events logged by loggers “A.B”, “A.B.C”, “A.B.C.D”, “A.B.D” etc. but not “A.BB”, “B.A.B” etc. If initialized with the empty string, all events are passed.