Skip to content

Commit 98a9e58

Browse files
committed
refactor: Remove debug console.log statements from loader
1 parent 39022d1 commit 98a9e58

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

js/loader.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -301,15 +301,14 @@ requirejs(["i18next", "i18nextHttpBackend"], function (i18next, i18nextHttpBacke
301301
function () {
302302
// Give scripts a moment to finish executing and set globals
303303
setTimeout(function () {
304-
// Log verification status for debugging (non-blocking)
304+
// Verify core dependencies are loaded
305305
const verificationStatus = {
306306
createjs: typeof window.createjs !== "undefined",
307307
createDefaultStack: typeof window.createDefaultStack !== "undefined",
308308
Logo: typeof window.Logo !== "undefined",
309309
Blocks: typeof window.Blocks !== "undefined",
310310
Turtles: typeof window.Turtles !== "undefined"
311311
};
312-
console.log("Core module verification:", verificationStatus);
313312

314313
// Check critical dependencies (only createjs is truly critical)
315314
if (typeof window.createjs === "undefined") {
@@ -325,7 +324,6 @@ requirejs(["i18next", "i18nextHttpBackend"], function (i18next, i18nextHttpBacke
325324
["activity/activity"],
326325
function () {
327326
// Activity loaded successfully
328-
console.log("Activity module loaded successfully");
329327
},
330328
function (err) {
331329
console.error("Failed to load activity/activity:", err);

0 commit comments

Comments
 (0)