File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
Extension/src/LanguageServer Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -1670,6 +1670,7 @@ export class DefaultClient implements Client {
1670
1670
languageClient = new LanguageClient ( `cpptools` , serverOptions , clientOptions ) ;
1671
1671
languageClient . onNotification ( DebugProtocolNotification , logDebugProtocol ) ;
1672
1672
languageClient . onNotification ( DebugLogNotification , logLocalized ) ;
1673
+ languageClient . onNotification ( LogTelemetryNotification , ( e ) => this . logTelemetry ( e ) ) ;
1673
1674
languageClient . registerProposedFeatures ( ) ;
1674
1675
await languageClient . start ( ) ;
1675
1676
@@ -2443,7 +2444,6 @@ export class DefaultClient implements Client {
2443
2444
2444
2445
this . languageClient . onNotification ( ReloadWindowNotification , ( ) => void util . promptForReloadWindowDueToSettingsChange ( ) ) ;
2445
2446
this . languageClient . onNotification ( UpdateTrustedCompilersNotification , ( e ) => void this . addTrustedCompiler ( e . compilerPath ) ) ;
2446
- this . languageClient . onNotification ( LogTelemetryNotification , ( e ) => this . logTelemetry ( e ) ) ;
2447
2447
this . languageClient . onNotification ( ReportStatusNotification , ( e ) => void this . updateStatus ( e ) ) ;
2448
2448
this . languageClient . onNotification ( ReportTagParseStatusNotification , ( e ) => this . updateTagParseStatus ( e ) ) ;
2449
2449
this . languageClient . onNotification ( CompileCommandsPathsNotification , ( e ) => void this . promptCompileCommands ( e ) ) ;
You can’t perform that action at this time.
0 commit comments