Some minor loader log message removals/changes
parent
cbbe2094f2
commit
9f78b7f5af
|
@ -25,7 +25,6 @@ async function detectAPNGSupport() {
|
||||||
|
|
||||||
ctx.drawImage(image, 0, 0);
|
ctx.drawImage(image, 0, 0);
|
||||||
apngSupport = ctx.getImageData(0, 0, 1, 1).data[3] === 0;
|
apngSupport = ctx.getImageData(0, 0, 1, 1).data[3] === 0;
|
||||||
console.log("Browser APNG support: %o", apngSupport);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function initializeElements() {
|
function initializeElements() {
|
||||||
|
|
|
@ -9,7 +9,7 @@ window["loader"] = loader;
|
||||||
/* let the loader register himself at the window first */
|
/* let the loader register himself at the window first */
|
||||||
|
|
||||||
const target = getUrlParameter("loader-target") || "app";
|
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;
|
let appLoader: ApplicationLoader;
|
||||||
if(target === "empty") {
|
if(target === "empty") {
|
||||||
|
|
Loading…
Reference in New Issue