Skip to content

Commit

Permalink
Restore Telemetry initialization.
Browse files Browse the repository at this point in the history
- Telemetry.startTelemetry(..) should not have been removed

Signed-off-by: Roland Grunberg <[email protected]>
  • Loading branch information
rgrunber committed Oct 7, 2024
1 parent 075dcab commit 50ed9ee
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ import { loadSupportedJreNames } from './jdkUtils';
import { BuildFileSelector, PICKED_BUILD_FILES, cleanupWorkspaceState } from './buildFilesSelector';
import { pasteFile } from './pasteAction';
import { ServerStatusKind } from './serverStatus';
import { TelemetryService } from '@redhat-developer/vscode-redhat-telemetry/lib/node';

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

Telemetry.startTelemetry(context);

enableJavadocSymbols();

registerOutOfMemoryDetection(storagePath);
Expand Down

0 comments on commit 50ed9ee

Please sign in to comment.