Lines Matching refs:debug_domains
113 def __init__(self, handler, level, debug_domains): argument
115 self.debug_domains = debug_domains
117 for domain in debug_domains:
118 if debug_domains[domain] < loglevel:
119 loglevel = debug_domains[domain]
126 if record.name in self.debug_domains and record.levelno >= self.debug_domains[record.name]:
174 def init_msgconfig(verbose, debug, debug_domains=None): argument
186 if debug_domains:
187 for (domainarg, iterator) in groupby(debug_domains):
195 level, debug_domains = constructLogOptions()
200 cls(handler, level, debug_domains)