diff --git a/src/vs/workbench/api/node/extHostOutputService.ts b/src/vs/workbench/api/node/extHostOutputService.ts index d89c64bac42..90a947e1696 100644 --- a/src/vs/workbench/api/node/extHostOutputService.ts +++ b/src/vs/workbench/api/node/extHostOutputService.ts @@ -114,7 +114,8 @@ export class ExtHostOutputService { if (!name) { throw new Error('illegal argument `name`. must not be falsy'); } else { - return logging ? new ExtHostLoggingOutputChannel(name, this._outputDir, this._proxy) : new ExtHostOutputChannel(name, this._proxy); + // return logging ? new ExtHostLoggingOutputChannel(name, this._outputDir, this._proxy) : new ExtHostOutputChannel(name, this._proxy); + return new ExtHostLoggingOutputChannel(name, this._outputDir, this._proxy); } } }