Skip to content

Commit b50bf60

Browse files
committed
Remove / from the message since it seems to cause it to be dropped. (#13899)
1 parent f4f3d8c commit b50bf60

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Extension/src/LanguageServer/client.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1695,9 +1695,10 @@ export class DefaultClient implements Client {
16951695

16961696
// Wait 1 second to allow time for the file watcher to signal a crash call stack write has occurred.
16971697
setTimeout(() => {
1698+
const sanitizedLspMessage = this.lastInvokedLspMessage.replace('/', '.');
16981699
telemetry.logLanguageServerEvent("languageClientCrash",
16991700
{
1700-
lastInvokedLspMessage: this.lastInvokedLspMessage
1701+
lastInvokedLspMessage: sanitizedLspMessage
17011702
},
17021703
{
17031704
restarting: Number(restart),

0 commit comments

Comments
 (0)