Enable debug in web browsers
masterTo use debug in a browser, use browserify or a browserify-as-a-service build.
Debug's enable state is persisted in localStorage. You can enable namespaces manually by setting localStorage.debug and refreshing the page.
Note for Chromium users: In Chrome, Brave, or Electron, you must set the console log level to 'Verbose' to see debug output.
// Enable namespaces in the browser console
localStorage.debug = 'worker:*';
// Then refresh the page