From 8902db0ae4ea9f6f259d004c098e6a65784c2808 Mon Sep 17 00:00:00 2001 From: Louis Lam Date: Sun, 30 Mar 2025 07:02:54 +0800 Subject: [PATCH] Remove console.log --- frontend/src/components/Terminal.vue | 1 - frontend/src/mixins/socket.ts | 1 - frontend/src/pages/Console.vue | 1 - 3 files changed, 3 deletions(-) diff --git a/frontend/src/components/Terminal.vue b/frontend/src/components/Terminal.vue index 0f26ecd..d912705 100644 --- a/frontend/src/components/Terminal.vue +++ b/frontend/src/components/Terminal.vue @@ -201,7 +201,6 @@ export default { } else { this.cursorPosition++; this.terminalInputBuffer += e.key; - console.log(this.terminalInputBuffer); this.terminal.write(e.key); } }); diff --git a/frontend/src/mixins/socket.ts b/frontend/src/mixins/socket.ts index a5fbb70..b789ff6 100644 --- a/frontend/src/mixins/socket.ts +++ b/frontend/src/mixins/socket.ts @@ -279,7 +279,6 @@ export default defineComponent({ }); socket.on("agentList", (res) => { - console.log(res); if (res.ok) { this.agentList = res.agentList; } diff --git a/frontend/src/pages/Console.vue b/frontend/src/pages/Console.vue index d2b15e9..25ddb18 100644 --- a/frontend/src/pages/Console.vue +++ b/frontend/src/pages/Console.vue @@ -39,7 +39,6 @@ export default { }, }, mounted() { - console.log(this.endpoint); this.$root.emitAgent(this.endpoint, "checkMainTerminal", (res) => { this.enableConsole = res.ok; this.processing = false;