Bug 314613 - Extension manager messages in Error Console. patch=Nick Thomas (cf), r=rob_strong

This commit is contained in:
rob_strong%exchangecode.com 2006-08-15 00:27:40 +00:00
Родитель 2d97cacfa0
Коммит e9242e8802
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -527,9 +527,10 @@ function removeDirRecursive(dir) {
* The string to write to the error console..
*/
function LOG(string) {
if (gLoggingEnabled)
if (gLoggingEnabled) {
dump("*** " + string + "\n");
gConsole.logStringMessage(string);
gConsole.logStringMessage(string);
}
}
/**