зеркало из https://github.com/mozilla/gecko-dev.git
28 строки
892 B
JavaScript
28 строки
892 B
JavaScript
/**
|
|
* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
*/
|
|
var EXPORTED_SYMBOLS = [ "ConsoleTest" ];
|
|
|
|
var ConsoleTest = {
|
|
go: function(dumpFunction) {
|
|
console.log("Hello world!");
|
|
console.createInstance().log("Hello world!");
|
|
|
|
let c = console.createInstance({
|
|
consoleID: "wow",
|
|
innerID: "CUSTOM INNER",
|
|
dump: dumpFunction,
|
|
prefix: "_PREFIX_",
|
|
});
|
|
|
|
c.log("Hello world!");
|
|
c.trace("Hello world!");
|
|
|
|
console.createInstance({ innerID: "LEVEL", maxLogLevel: "Off" }).log("Invisible!");
|
|
console.createInstance({ innerID: "LEVEL", maxLogLevel: "All" }).log("Hello world!");
|
|
console.createInstance({ innerID: "LEVEL", maxLogLevelPref: "foo.pref" }).log("Invisible!");
|
|
console.createInstance({ innerID: "LEVEL", maxLogLevelPref: "pref.test.console" }).log("Hello world!");
|
|
}
|
|
};
|