Skip to content

Commit 50ed9ee

Browse files
committed
Restore Telemetry initialization.
- Telemetry.startTelemetry(..) should not have been removed Signed-off-by: Roland Grunberg <[email protected]>
1 parent 075dcab commit 50ed9ee

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/extension.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ import { loadSupportedJreNames } from './jdkUtils';
3838
import { BuildFileSelector, PICKED_BUILD_FILES, cleanupWorkspaceState } from './buildFilesSelector';
3939
import { pasteFile } from './pasteAction';
4040
import { ServerStatusKind } from './serverStatus';
41+
import { TelemetryService } from '@redhat-developer/vscode-redhat-telemetry/lib/node';
4142

4243
const syntaxClient: SyntaxLanguageClient = new SyntaxLanguageClient();
4344
const standardClient: StandardLanguageClient = new StandardLanguageClient();
@@ -147,6 +148,8 @@ export async function activate(context: ExtensionContext): Promise<ExtensionAPI>
147148
}
148149
initializeLogFile(clientLogFile);
149150

151+
Telemetry.startTelemetry(context);
152+
150153
enableJavadocSymbols();
151154

152155
registerOutOfMemoryDetection(storagePath);

0 commit comments

Comments
 (0)