Bug 473506 - Synchronize BrowserChrome and Mochitest log formats; (Av1) Mochitest: remove '*** ' console output; r=rcampbell

This commit is contained in:
Serge Gautherie 2009-05-26 18:33:13 +02:00
parent fe5366ad3f
commit 94b4aa1278

View File

@ -60,7 +60,7 @@ if (params.logFile) {
// if we get a quiet param, don't log to the console
if (!params.quiet) {
function dumpListener(msg) {
dump("*** " + msg.num + " " + msg.level + " " + msg.info.join(' ') + "\n");
dump(msg.num + " " + msg.level + " " + msg.info.join(' ') + "\n");
}
TestRunner.logger.addListener("dumpListener", consoleLevel + "", dumpListener);
}