remove from schema

#47774
This commit is contained in:
isidor
2018-05-28 15:38:11 +02:00
parent eef87dac6b
commit 6d76ef8c48
2 changed files with 0 additions and 6 deletions

View File

@@ -369,7 +369,6 @@ export interface IEnvConfig {
postDebugTask?: string;
debugServer?: number;
noDebug?: boolean;
logLevel?: string;
}
export interface IConfig extends IEnvConfig {

View File

@@ -215,11 +215,6 @@ configurationRegistry.registerConfiguration({
description: nls.localize({ comment: ['This is the description for a setting'], key: 'enableAllHovers' }, "Controls if the non debug hovers should be enabled while debugging. If true the hover providers will be called to provide a hover. Regular hovers will not be shown even if this setting is true."),
default: false
},
'debug.logLevel': {
enum: ['off', 'trace', 'debug', 'info', 'warning', 'error', 'critical'],
description: nls.localize({ comment: ['This is the description for a setting'], key: 'logLevel' }, "Controls what diagnostic output should the debug session produce."),
default: 'info'
},
'launch': {
type: 'object',
description: nls.localize({ comment: ['This is the description for a setting'], key: 'launch' }, "Global debug launch configuration. Should be used as an alternative to 'launch.json' that is shared across workspaces"),