Skip to content

Commit f08b79d

Browse files
authored
Change Logging Suffix (microsoft#166122)
Change logging suffix
1 parent 05988d0 commit f08b79d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/logs/common/logs.contribution.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class LogOutputChannels extends Disposable implements IWorkbenchContribution {
5757
if (supportsTelemetry(this.productService, this.environmentService) && this.logService.getLevel() === LogLevel.Trace) {
5858
// 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
5959
const justLoggingAndNotSending = isLoggingOnly(this.productService, this.environmentService);
60-
const logSuffix = justLoggingAndNotSending ? ' (Logging Only)' : '';
60+
const logSuffix = justLoggingAndNotSending ? ' (Not Sent)' : '';
6161
this.registerLogChannel(Constants.telemetryLogChannelId, nls.localize('telemetryLog', "Telemetry{0}", logSuffix), this.environmentService.telemetryLogResource);
6262
this.registerLogChannel(Constants.extensionTelemetryLogChannelId, nls.localize('extensionTelemetryLog', "Extension Telemetry{0}", logSuffix), this.environmentService.extHostTelemetryLogFile);
6363
return true;

0 commit comments

Comments
 (0)