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;