Select Git revision
-
Reiter, Christoph authored
karma is looking for the chromium exedcutable, but the playwright one is still called "chrome". I didn't noticed this because it would fall back to the debian install chromium instance then.
Reiter, Christoph authoredkarma is looking for the chromium exedcutable, but the playwright one is still called "chrome". I didn't noticed this because it would fall back to the debian install chromium instance then.
logger.js 229 B
class LoggerType {
get debug() {
if (window.location.hash.includes("debug")) {
return console.debug;
} else {
return () => {};
}
}
}
export const Logger = new LoggerType();