15 lines
364 B
JavaScript
15 lines
364 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
onmessage = () => {
|
|
let logConsole = console.createInstance({
|
|
maxLogLevelPref: "browser.test.logLevel",
|
|
maxLogLevel: "Warn",
|
|
prefix: "testPrefix",
|
|
});
|
|
|
|
logConsole.warn("Test Warn");
|
|
logConsole.info("Test Info");
|
|
|
|
postMessage({});
|
|
};
|