diff --git a/src/vs/workbench/parts/debug/node/debugConfigurationManager.ts b/src/vs/workbench/parts/debug/node/debugConfigurationManager.ts index 7ac928392c6b63d6b9cc3e6b07d3dfebb9833f51..09816a0718959a5a5d3873774aa6faa2f0bd48c4 100644 --- a/src/vs/workbench/parts/debug/node/debugConfigurationManager.ts +++ b/src/vs/workbench/parts/debug/node/debugConfigurationManager.ts @@ -179,7 +179,7 @@ export class ConfigurationManager { } else if (duplicate[attribute] && attribute !== 'type') { // Give priority to the later registered extension. duplicate[attribute] = adapter[attribute]; - extension.collector.warn(nls.localize('duplicateDebuggerType', "Debug type '{0}' is already registered and has attribute '{1}', ignoring attribute '{1}'.", adapter.type, attribute)); + extension.collector.error(nls.localize('duplicateDebuggerType', "Debug type '{0}' is already registered and has attribute '{1}', ignoring attribute '{1}'.", adapter.type, attribute)); } else { duplicate[attribute] = adapter[attribute]; }