Lines Matching full:loggers

175     When (re)configuring logging, handle loggers which were in the previous
180 However, don't disable children of named loggers, as that's probably not
181 what was intended by the user. Also, allow existing loggers to NOT be
196 """Create and install loggers"""
199 llist = cp["loggers"]["keys"]
219 #we don't want to lose the existing loggers,
221 #existing is set to contain all existing loggers,
224 #what's left in existing is the set of loggers
229 #avoid disabling child loggers of explicitly
230 #named loggers. With a sorted list it is easier
231 #to find the child loggers.
233 #We'll keep the list of existing loggers
234 #which are children of named loggers here...
266 #Disable any old loggers. There's no point deleting
269 #However, don't disable children of named loggers, as that's
529 loggers = config.get('loggers', EMPTY_DICT)
530 for name in loggers:
532 self.configure_logger(name, loggers[name], True)
593 # Next, do loggers - they refer to handlers and filters
595 #we don't want to lose the existing loggers,
597 #existing is set to contain all existing loggers,
600 #what's left in existing is the set of loggers
606 #avoid disabling child loggers of explicitly
607 #named loggers. With a sorted list it is easier
608 #to find the child loggers.
610 #We'll keep the list of existing loggers
611 #which are children of named loggers here...
614 loggers = config.get('loggers', EMPTY_DICT)
615 for name in loggers:
627 self.configure_logger(name, loggers[name])
632 #Disable any old loggers. There's no point deleting
635 #However, don't disable children of named loggers, as that's
789 Perform configuration which is common to root and non-root loggers.