Home | History | Annotate | Download | only in logging

Lines Matching refs:loggers

184     """Create and install loggers"""
187 llist = cp.get("loggers", "keys")
208 #we don't want to lose the existing loggers,
210 #existing is set to contain all existing loggers,
213 #what's left in existing is the set of loggers
218 #avoid disabling child loggers of explicitly
219 #named loggers. With a sorted list it is easier
220 #to find the child loggers.
222 #We'll keep the list of existing loggers
223 #which are children of named loggers here...
259 #Disable any old loggers. There's no point deleting
262 #However, don't disable children of named loggers, as that's
523 loggers = config.get('loggers', EMPTY_DICT)
524 for name in loggers:
526 self.configure_logger(name, loggers[name], True)
588 # Next, do loggers - they refer to handlers and filters
590 #we don't want to lose the existing loggers,
592 #existing is set to contain all existing loggers,
595 #what's left in existing is the set of loggers
601 #avoid disabling child loggers of explicitly
602 #named loggers. With a sorted list it is easier
603 #to find the child loggers.
605 #We'll keep the list of existing loggers
606 #which are children of named loggers here...
609 loggers = config.get('loggers', EMPTY_DICT)
610 for name in loggers:
624 self.configure_logger(name, loggers[name])
629 #Disable any old loggers. There's no point deleting
632 #However, don't disable children of named loggers, as that's
761 Perform configuration which is common to root and non-root loggers.