mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-08 17:19:48 +01:00
Remove logs
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user