More ExtHostLogger tweaks, and remove logLevel syncing code, for real investigation later

This commit is contained in:
Rob Lourens
2017-12-13 14:16:00 -08:00
parent d279e2de6c
commit 35c7351761
3 changed files with 13 additions and 26 deletions

View File

@@ -33,7 +33,7 @@ import { IConfigurationData, ConfigurationTarget, IConfigurationModel } from 'vs
import { IPickOpenEntry, IPickOptions } from 'vs/platform/quickOpen/common/quickOpen';
import { SaveReason } from 'vs/workbench/services/textfile/common/textfiles';
import { TextEditorCursorStyle } from 'vs/editor/common/config/editorOptions';
import { EndOfLine, TextEditorLineNumbersStyle, LogLevel } from 'vs/workbench/api/node/extHostTypes';
import { EndOfLine, TextEditorLineNumbersStyle } from 'vs/workbench/api/node/extHostTypes';
import { TaskSet } from 'vs/workbench/parts/tasks/common/tasks';
@@ -673,10 +673,6 @@ export interface ExtHostWindowShape {
$onDidChangeWindowFocus(value: boolean): void;
}
export interface ExtHostLogServiceShape {
$acceptLogLevelChanged(logLevel: LogLevel): void;
}
// --- proxy identifiers
export const MainContext = {