提交 9e1a7c31 编写于 作者: D Daniel Imms

Remove logs

上级 c9cfc7c5
......@@ -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) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册