Home | History | Annotate | Download | only in logging

Lines Matching full:loggers

177     """Create and install loggers"""
180 llist = cp.get("loggers", "keys")
201 #we don't want to lose the existing loggers,
203 #existing is set to contain all existing loggers,
206 #what's left in existing is the set of loggers
211 #avoid disabling child loggers of explicitly
212 #named loggers. With a sorted list it is easier
213 #to find the child loggers.
215 #We'll keep the list of existing loggers
216 #which are children of named loggers here...
252 #Disable any old loggers. There's no point deleting
255 #However, don't disable children of named loggers, as that's
532 loggers = config.get('loggers', EMPTY_DICT)
533 for name in loggers:
535 self.configure_logger(name, loggers[name], True)
597 # Next, do loggers - they refer to handlers and filters
599 #we don't want to lose the existing loggers,
601 #existing is set to contain all existing loggers,
604 #what's left in existing is the set of loggers
610 #avoid disabling child loggers of explicitly
611 #named loggers. With a sorted list it is easier
612 #to find the child loggers.
614 #We'll keep the list of existing loggers
615 #which are children of named loggers here...
618 loggers = config.get('loggers', EMPTY_DICT)
619 for name in loggers:
633 self.configure_logger(name, loggers[name])
638 #Disable any old loggers. There's no point deleting
641 #However, don't disable children of named loggers, as that's
770 Perform configuration which is common to root and non-root loggers.