Lines Matching full:loggers
165 When (re)configuring logging, handle loggers which were in the previous
170 However, don't disable children of named loggers, as that's probably not
171 what was intended by the user. Also, allow existing loggers to NOT be
186 """Create and install loggers"""
189 llist = cp["loggers"]["keys"]
209 #we don't want to lose the existing loggers,
211 #existing is set to contain all existing loggers,
214 #what's left in existing is the set of loggers
219 #avoid disabling child loggers of explicitly
220 #named loggers. With a sorted list it is easier
221 #to find the child loggers.
223 #We'll keep the list of existing loggers
224 #which are children of named loggers here...
256 #Disable any old loggers. There's no point deleting
259 #However, don't disable children of named loggers, as that's
521 loggers = config.get('loggers', EMPTY_DICT)
522 for name in loggers:
524 self.configure_logger(name, loggers[name], True)
585 # Next, do loggers - they refer to handlers and filters
587 #we don't want to lose the existing loggers,
589 #existing is set to contain all existing loggers,
592 #what's left in existing is the set of loggers
598 #avoid disabling child loggers of explicitly
599 #named loggers. With a sorted list it is easier
600 #to find the child loggers.
602 #We'll keep the list of existing loggers
603 #which are children of named loggers here...
606 loggers = config.get('loggers', EMPTY_DICT)
607 for name in loggers:
619 self.configure_logger(name, loggers[name])
624 #Disable any old loggers. There's no point deleting
627 #However, don't disable children of named loggers, as that's
777 Perform configuration which is common to root and non-root loggers.