mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-03 09:35:40 -05:00
22 lines
961 B
TypeScript
22 lines
961 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { extHostCustomer } from 'vs/workbench/api/electron-browser/extHostCustomers';
|
|
import { ILogService } from 'vs/platform/log/common/log';
|
|
import { Disposable } from 'vs/base/common/lifecycle';
|
|
import { IExtHostContext, ExtHostContext } from 'vs/workbench/api/node/extHost.protocol';
|
|
|
|
@extHostCustomer
|
|
export class MainThreadLogService extends Disposable {
|
|
|
|
constructor(
|
|
extHostContext: IExtHostContext,
|
|
@ILogService logService: ILogService,
|
|
) {
|
|
super();
|
|
this._register(logService.onDidChangeLogLevel(level => extHostContext.getProxy(ExtHostContext.ExtHostLogService).$setLevel(level)));
|
|
}
|
|
|
|
} |