Home | History | Annotate | Download | only in assets

Lines Matching refs:logging

32 import logging
107 logging.info(marker + " >>> " + str(params["new"][0]) + " new, " +
124 logging.info("Comparing results to " + ref_dir)
136 logging.info("Detailed diffs are in " + diff_result)
146 # Set up logging format.
147 log_level = logging.INFO
149 log_level = logging.DEBUG
150 logging.basicConfig(level=log_level,
165 logging.info("Generating test list.");
170 logging.info("Aborting because cannot generate test list.\n" + adb_output)
174 logging.info("Running tests")
208 logging.error("DumpRenderTree crashed, output:\n" + adb_output)
218 logging.error('Cannot get crashed test name, device offline?')
219 logging.error('stderr: ' + err)
220 logging.error('retrying in 10s...')
223 logging.info(crashed_test + " CRASHED");
226 logging.info("Resuming layout test runner...");
233 logging.error("Error happened : " + adb_output)
236 logging.debug(adb_output);
237 logging.info("Done\n");
244 logging.error("Cannot create results dir: " + results_dir);
254 logging.debug(adb_output)
264 logging.info(str(passed_tests) + " passed")
266 logging.info(str(failed_tests) + " failed")
268 logging.info(str(ignored_tests) + " ignored results")
270 logging.info(str(crashed_tests) + " crashed")
272 logging.info(str(nontext_tests) + " no dumpAsText")
273 logging.info(str(passed_tests + failed_tests + ignored_tests + crashed_tests + nontext_tests) + " TOTAL")
275 logging.info("Results are stored under: " + results_dir + "\n")
301 help="include debug-level logging")