Lines Matching refs:log
213 def __init__(self, log): argument
214 self.log = log
231 self.log.info("Parsing source code...")
232 self.log.debug(
286 self.log.debug("Found:")
289 self.log.debug(" {:4} Total {} Macros"
291 self.log.debug(" {:4} {} Non-identifier Macros"
293 self.log.debug(" {:4} Enum Constants".format(len(enum_consts)))
294 self.log.debug(" {:4} Identifiers".format(len(identifiers)))
295 self.log.debug(" {:4} Exported Symbols".format(len(symbols)))
383 self.log.debug("Looking for macros in {} files".format(len(files)))
418 self.log.debug(
451 self.log.debug("Looking for enum consts in {} files".format(len(files)))
650 self.log.debug("Looking for included identifiers in {} files".format \
672 self.log.info("Compiling...")
719 self.log.debug(error.output)
765 self.log.error(line)
773 def __init__(self, parse_result, log): argument
775 self.log = log
785 self.log.info("=============")
801 self.log.info("=============")
803 self.log.info("FAIL: {0} problem(s) to fix".format(str(problems)))
805 self.log.info("Remove --quiet to see explanations.")
807 self.log.info("Use --quiet for minimal output.")
810 self.log.info("PASS")
915 self.log.info("{}: FAIL\n".format(name))
917 self.log.warning(str(problem))
919 self.log.info("{}: PASS".format(name))
948 log = logging.getLogger()
949 log.setLevel(logging.DEBUG if args.verbose else logging.INFO)
950 log.addHandler(logging.StreamHandler())
953 code_parser = CodeParser(log)
959 name_checker = NameChecker(parse_result, log)