Exemplo n.º 1
0
 def _process_configfiles(self):
     if self.config is None:
         config_files = self.suite.list_config_files()
         config_data = ConfigData(config_files)
         self.config = ConfigView(config_data)
     # Now that we have a config file we should check to see if it wants
     # us to turn on debugging
     if self.debug:
         self.log.setLevel(logging.DEBUG)
         self.config.log.setLevel(logging.DEBUG)