Remove logs

This commit is contained in:
Daniel Imms
2019-07-12 10:44:32 -07:00
parent c9cfc7c5ed
commit 9e1a7c313b
@@ -46,7 +46,6 @@ export class TerminalProcess implements ITerminalChildProcess, IDisposable {
windowsEnableConpty: boolean,
@ILogService private readonly _logService: ILogService
) {
console.log('pty ctor');
let shellName: string;
if (os.platform() === 'win32') {
shellName = path.basename(shellLaunchConfig.executable || '');
@@ -96,7 +95,6 @@ export class TerminalProcess implements ITerminalChildProcess, IDisposable {
});
Promise.all([cwdVerification, exectuableVerification]).then(() => {
console.log('pty spawn', options);
this.setupPtyProcess(shellLaunchConfig, options);
}).catch((exitCode: number) => {
return this._launchFailed(exitCode);
@@ -228,7 +226,6 @@ export class TerminalProcess implements ITerminalChildProcess, IDisposable {
if (typeof cols !== 'number' || typeof rows !== 'number' || isNaN(cols) || isNaN(rows)) {
return;
}
console.log('resize pty', cols, rows);
// Ensure that cols and rows are always >= 1, this prevents a native
// exception in winpty.
if (this._ptyProcess) {