Skip to content

Commit 1479efd

Browse files
committed
Localize LSP Trace Logs
1 parent 802be73 commit 1479efd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

l10n/bundle.l10n.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@
168168
"IntelliCode features will not be available, {0} failed to activate.": "IntelliCode features will not be available, {0} failed to activate.",
169169
"Go to output": "Go to output",
170170
"Suppress notification": "Suppress notification",
171+
"C# LSP Trace Logs": "C# LSP Trace Logs",
171172
"Restore {0}": "Restore {0}",
172173
"Restore already in progress": "Restore already in progress",
173174
"Sending request": "Sending request",

src/lsptoolshost/roslynLanguageServer.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1069,8 +1069,7 @@ export async function activateRoslynLanguageServer(
10691069
// Create a channel for outputting general logs from the language server.
10701070
_channel = outputChannel;
10711071
// Create a separate channel for outputting trace logs - these are incredibly verbose and make other logs very difficult to see.
1072-
// The trace channel verbosity is controlled by the _channel verbosity.
1073-
_traceChannel = vscode.window.createOutputChannel('C# LSP Trace Logs');
1072+
_traceChannel = vscode.window.createOutputChannel(vscode.l10n.t('C# LSP Trace Logs'));
10741073

10751074
const hostExecutableResolver = new DotnetRuntimeExtensionResolver(
10761075
platformInfo,

0 commit comments

Comments
 (0)