diff --git a/terminus-ssh/src/components/editConnectionModal.component.ts b/terminus-ssh/src/components/editConnectionModal.component.ts index f0343d75..f78eeaa9 100644 --- a/terminus-ssh/src/components/editConnectionModal.component.ts +++ b/terminus-ssh/src/components/editConnectionModal.component.ts @@ -44,7 +44,6 @@ export class EditConnectionModalComponent { }[k] ] } - console.log(this) } async ngOnInit () { diff --git a/terminus-terminal/src/frontends/htermFrontend.ts b/terminus-terminal/src/frontends/htermFrontend.ts index 17c7bd98..26f5f967 100644 --- a/terminus-terminal/src/frontends/htermFrontend.ts +++ b/terminus-terminal/src/frontends/htermFrontend.ts @@ -175,7 +175,6 @@ export class HTermFrontend extends Frontend { this.io = this.term.io.push() this.io.onVTKeystroke = this.io.sendString = data => this.input.next(data) this.io.onTerminalResize = (columns, rows) => { - console.log('hterm resize') this.resize.next({ columns, rows }) } this.ready.next(null) diff --git a/terminus-terminal/src/services/sessions.service.ts b/terminus-terminal/src/services/sessions.service.ts index dc41190f..79ff11f1 100644 --- a/terminus-terminal/src/services/sessions.service.ts +++ b/terminus-terminal/src/services/sessions.service.ts @@ -155,7 +155,6 @@ export class Session extends BaseSession { }) this.pty.on('exit', () => { - console.log('session exit') if (this.pauseAfterExit) { return } else if (this.open) { @@ -164,7 +163,6 @@ export class Session extends BaseSession { }) this.pty.on('close', () => { - console.log('session close') if (this.pauseAfterExit) { this.emitOutput('\r\nPress any key to close\r\n') } else if (this.open) {