Home | History | Annotate | Download | only in system

Lines Matching refs:handlers

129     """Return a list of the default logging handlers to use.
159 handlers=None):
163 A list of references to the logging handlers added to the root
164 logger. This allows the caller to later remove the handlers
176 handlers. The stream must define an "encoding" data attribute,
178 handlers: A list of logging.Handler instances to add to the logger
197 if handlers is None:
198 handlers = _default_handlers(stream, logging_level)
202 for handler in handlers:
207 return handlers