Bug 900944 - OS.File LOG now actually logs. r=froydnj

This commit is contained in:
David Rajchenbach-Teller 2013-08-02 12:42:46 -04:00
parent 9aa61b2c24
commit cba68435bc

View File

@ -107,10 +107,7 @@ if (typeof console != "undefined" && console.log) {
gLogger = console.log.bind(console, "OS");
} else {
gLogger = function(...args) {
let text = "OS";
for (let i = 0; i < args.length; ++i) {
text += (" " + args[i]);
}
dump("OS " + args.join(" ") + "\n");
};
}