From e5a1664d74498ea46c752f5b3e7a36c3e43d7876 Mon Sep 17 00:00:00 2001 From: Sandeep Somavarapu Date: Tue, 4 Sep 2018 15:27:05 +0200 Subject: [PATCH] #57618 Enable logging output channels --- src/vs/workbench/api/node/extHostOutputService.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); } } }