Remove console.log

This commit is contained in:
Louis Lam
2025-03-30 07:02:54 +08:00
parent cdbf7f1843
commit 8902db0ae4
3 changed files with 0 additions and 3 deletions

View File

@@ -201,7 +201,6 @@ export default {
} else { } else {
this.cursorPosition++; this.cursorPosition++;
this.terminalInputBuffer += e.key; this.terminalInputBuffer += e.key;
console.log(this.terminalInputBuffer);
this.terminal.write(e.key); this.terminal.write(e.key);
} }
}); });

View File

@@ -279,7 +279,6 @@ export default defineComponent({
}); });
socket.on("agentList", (res) => { socket.on("agentList", (res) => {
console.log(res);
if (res.ok) { if (res.ok) {
this.agentList = res.agentList; this.agentList = res.agentList;
} }

View File

@@ -39,7 +39,6 @@ export default {
}, },
}, },
mounted() { mounted() {
console.log(this.endpoint);
this.$root.emitAgent(this.endpoint, "checkMainTerminal", (res) => { this.$root.emitAgent(this.endpoint, "checkMainTerminal", (res) => {
this.enableConsole = res.ok; this.enableConsole = res.ok;
this.processing = false; this.processing = false;