From e826ba761aea0fc306079e195e3c424c0a385991 Mon Sep 17 00:00:00 2001 From: Stephanie Gredell Date: Thu, 21 Aug 2025 11:32:46 -0700 Subject: [PATCH] Clean up console.log --- static/commands.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/static/commands.js b/static/commands.js index 46c9250..65e7121 100644 --- a/static/commands.js +++ b/static/commands.js @@ -56,10 +56,7 @@ export class CommandInvoker { if (this.history.length > this.maxHistorySize) { this.history.shift(); } - - console.log(`Executed: ${command.getDescription()}`); } catch (error) { - console.error(`Command execution failed: ${command.getDescription()}`, error); throw error; } } @@ -73,7 +70,6 @@ export class CommandInvoker { const command = this.history.pop(); if (command.undo) { command.undo(this.app); - console.log(`Undid: ${command.getDescription()}`); } }