Lines Matching refs:log
32 class Log(object):
42 class Options(Log):
46 Log.__init__(self, "Options")
47 log = self._log
86 log.warn("Bad verbose level, switching to default.")
94 log.error("Bad usage. Please try -h or --help.")
97 log.error("Path '%s' doesn't exist", self._a[0])
101 log.warn("Developer mode sets parallel-level option to one.")
119 log = logging.getLogger("Exec")
123 log.info("Running... %s", test_suite.test_file_name())
130 log.debug("Setting timeout timer %i sec on %s (process %s)", timeout, test_suite.test_file_name(), tst.pid)
147 log.error("Timeout, process '%s' (%i) was terminated", test_suite.test_file_name(), tst.pid)
154 log.exception("Can't open an autotest file: '%s'. Skipping the test...", e.filename)
157 log.info("Finished %s", test_suite.test_file_name())
182 class Main(Log):
186 Log.__init__(self, "Main")