mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 12:19:20 +00:00
disable context key event logging (#160145)
This commit is contained in:
@@ -270,8 +270,7 @@ export abstract class AbstractContextKeyService implements IContextKeyService {
|
||||
protected _isDisposed: boolean;
|
||||
protected _myContextId: number;
|
||||
|
||||
protected _onDidChangeContext = new MicrotaskEmitter<IContextKeyChangeEvent>({ merge: input => new CompositeContextKeyChangeEvent(input), _profName: 'onDidChangeContextKey' });
|
||||
// protected _onDidChangeContext = new PauseableEmitter<IContextKeyChangeEvent>({ merge: input => new CompositeContextKeyChangeEvent(input), _profName: 'onDidChangeContextKey' });
|
||||
protected _onDidChangeContext = new MicrotaskEmitter<IContextKeyChangeEvent>({ merge: input => new CompositeContextKeyChangeEvent(input) });
|
||||
readonly onDidChangeContext = this._onDidChangeContext.event;
|
||||
|
||||
constructor(myContextId: number) {
|
||||
|
||||
Reference in New Issue
Block a user