tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

worker.mjs (364B)


      1 /* Any copyright is dedicated to the Public Domain.
      2 * http://creativecommons.org/publicdomain/zero/1.0/ */
      3 
      4 onmessage = () => {
      5  let logConsole = console.createInstance({
      6    maxLogLevelPref: "browser.test.logLevel",
      7    maxLogLevel: "Warn",
      8    prefix: "testPrefix",
      9  });
     10 
     11  logConsole.warn("Test Warn");
     12  logConsole.info("Test Info");
     13 
     14  postMessage({});
     15 };