Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLogan Ramos <lramos15@gmail.com>2022-11-11 18:41:24 +0300
committerGitHub <noreply@github.com>2022-11-11 18:41:24 +0300
commitf08b79d3176a0e8f2954f002ab60eda12928747b (patch)
treeb338b6bef6420d966315d727b558c4a368d8e62c
parent05988d07c19435711494cd8b46715d52983d2ce4 (diff)
Change Logging Suffix (#166122)
Change logging suffix
-rw-r--r--src/vs/workbench/contrib/logs/common/logs.contribution.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vs/workbench/contrib/logs/common/logs.contribution.ts b/src/vs/workbench/contrib/logs/common/logs.contribution.ts
index e57f3c9401a..ca6f046c7cf 100644
--- a/src/vs/workbench/contrib/logs/common/logs.contribution.ts
+++ b/src/vs/workbench/contrib/logs/common/logs.contribution.ts
@@ -57,7 +57,7 @@ class LogOutputChannels extends Disposable implements IWorkbenchContribution {
if (supportsTelemetry(this.productService, this.environmentService) && this.logService.getLevel() === LogLevel.Trace) {
// Not a perfect check, but a nice way to indicate if we only have logging enabled for debug purposes and nothing is actually being sent
const justLoggingAndNotSending = isLoggingOnly(this.productService, this.environmentService);
- const logSuffix = justLoggingAndNotSending ? ' (Logging Only)' : '';
+ const logSuffix = justLoggingAndNotSending ? ' (Not Sent)' : '';
this.registerLogChannel(Constants.telemetryLogChannelId, nls.localize('telemetryLog', "Telemetry{0}", logSuffix), this.environmentService.telemetryLogResource);
this.registerLogChannel(Constants.extensionTelemetryLogChannelId, nls.localize('extensionTelemetryLog', "Extension Telemetry{0}", logSuffix), this.environmentService.extHostTelemetryLogFile);
return true;