From 1477a67b77df70050a0adfaf76959a109ff199f9 Mon Sep 17 00:00:00 2001 From: Ramya Achutha Rao Date: Tue, 4 Apr 2017 11:30:44 -0700 Subject: [PATCH] telemtry for liveErrors --- src/goMain.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/goMain.ts b/src/goMain.ts index 9bea66ae7..d222d52c6 100644 --- a/src/goMain.ts +++ b/src/goMain.ts @@ -348,7 +348,8 @@ function sendTelemetryEventForConfig(goConfig: vscode.WorkspaceConfiguration) { includeImports: goConfig['gotoSymbol'] && goConfig['gotoSymbol']['includeImports'] + '', addTags: JSON.stringify(goConfig['addTags']), removeTags: JSON.stringify(goConfig['removeTags']), - editorContextMenuCommands: JSON.stringify(goConfig['editorContextMenuCommands']) + editorContextMenuCommands: JSON.stringify(goConfig['editorContextMenuCommands']), + liveErrors: JSON.stringify(goConfig['liveErrors']) }); }