#39574 Revert extension changs

This commit is contained in:
Sandeep Somavarapu
2018-01-23 17:59:09 +01:00
parent 7af951014b
commit 6fe6061960
2 changed files with 3 additions and 3 deletions

View File

@@ -5,7 +5,7 @@
'use strict';
import { ExtHostContext, IExtHostContext } from '../node/extHost.protocol';
import { IExtHostContext } from '../node/extHost.protocol';
import { extHostCustomer } from 'vs/workbench/api/electron-browser/extHostCustomers';
import { ILogService } from 'vs/platform/log/common/log';
import { Disposable } from 'vs/base/common/lifecycle';
@@ -18,7 +18,7 @@ export class MainThreadLogLevelManagementChannel extends Disposable {
@ILogService logService: ILogService,
) {
super();
this._register(logService.onDidChangeLogLevel(level => extHostContext.getProxy(ExtHostContext.ExtHostLogService).$setLogLevel(level)));
// this._register(logService.onDidChangeLogLevel(level => extHostContext.getProxy(ExtHostContext.ExtHostLogService).$setLogLevel(level)));
}
}