提交 451f988c 编写于 作者: I isidor

debug: addLaunchConfiguration telemetry event

上级 c3035a49
......@@ -20,6 +20,7 @@ import { IModelDecorationOptions, MouseTargetType, IModelDeltaDecoration, Tracke
import { Range } from 'vs/editor/common/core/range';
import { Selection } from 'vs/editor/common/core/selection';
import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation';
import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry';
import { ICommandService } from 'vs/platform/commands/common/commands';
import { IContextKeyService, IContextKey } from 'vs/platform/contextkey/common/contextkey';
import { IContextMenuService } from 'vs/platform/contextview/browser/contextView';
......@@ -53,7 +54,8 @@ export class DebugEditorContribution implements IDebugEditorContribution {
@IContextMenuService private contextMenuService: IContextMenuService,
@IInstantiationService private instantiationService: IInstantiationService,
@IContextKeyService contextKeyService: IContextKeyService,
@ICommandService private commandService: ICommandService
@ICommandService private commandService: ICommandService,
@ITelemetryService private telemetryService: ITelemetryService
) {
this.breakpointHintDecoration = [];
this.hoverWidget = new DebugHoverWidget(this.editor, this.debugService, this.instantiationService);
......@@ -281,6 +283,7 @@ export class DebugEditorContribution implements IDebugEditorContribution {
}
public addLaunchConfiguration(): TPromise<any> {
this.telemetryService.publicLog('debug/addLaunchConfiguration');
let configurationsPosition: IPosition;
const model = this.editor.getModel();
let depthInArray = 0;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册