Some minor loader log message removals/changes

canary
WolverinDEV 2020-07-24 01:13:00 +02:00
parent cbbe2094f2
commit 9f78b7f5af
2 changed files with 1 additions and 2 deletions

View File

@ -25,7 +25,6 @@ async function detectAPNGSupport() {
ctx.drawImage(image, 0, 0);
apngSupport = ctx.getImageData(0, 0, 1, 1).data[3] === 0;
console.log("Browser APNG support: %o", apngSupport);
}
function initializeElements() {

View File

@ -9,7 +9,7 @@ window["loader"] = loader;
/* let the loader register himself at the window first */
const target = getUrlParameter("loader-target") || "app";
console.error("Loading app with loader \"%s\"", target);
console.info("Loading app with loader \"%s\"", target);
let appLoader: ApplicationLoader;
if(target === "empty") {