Skip to content

Commit 619bd06

Browse files
authored
Merge pull request #5821 from DhyaniKavya/fix/remove-plugin-eval-debug-log-clean
Minimal fix: remove leftover debug logging from plugin evaluation
2 parents 3d5ee54 + 3ec1591 commit 619bd06

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

js/logo.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -760,8 +760,7 @@ class Logo {
760760
default:
761761
// Is it a plugin?
762762
if (logo.blockList[blk].name in logo.evalArgDict) {
763-
// eslint-disable-next-line no-console
764-
console.log("running eval on " + logo.blockList[blk].name);
763+
// Debug logging removed to avoid console noise in production
765764
eval(logo.evalArgDict[logo.blockList[blk].name]);
766765
} else {
767766
// eslint-disable-next-line no-console

0 commit comments

Comments
 (0)