From e2a023d2adb082fdd6fd041996d1754c14c8de02 Mon Sep 17 00:00:00 2001 From: Shane McLaughlin Date: Thu, 4 Apr 2024 12:14:59 -0500 Subject: [PATCH] fix: remove logging (#960) --- src/commands/project/delete/source.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/commands/project/delete/source.ts b/src/commands/project/delete/source.ts index 03f0eee7..cce7691b 100644 --- a/src/commands/project/delete/source.ts +++ b/src/commands/project/delete/source.ts @@ -23,7 +23,7 @@ import { RequestStatus, SourceComponent, } from '@salesforce/source-deploy-retrieve'; -import { Duration, logFn } from '@salesforce/kit'; +import { Duration } from '@salesforce/kit'; import { ChangeResult, ConflictResponse, deleteCustomLabels, SourceTracking } from '@salesforce/source-tracking'; import { arrayWithDeprecation, @@ -398,7 +398,6 @@ export class Source extends SfCommand { const local = (this.components ?? []) .filter(isSourceComponent) .filter(sourceComponentIsNotInMixedDeployDelete(this.mixedDeployDelete)) - .map(logFn) .flatMap((c) => // for custom labels, print each custom label to be deleted, not the whole file isNonDecomposedCustomLabelsOrCustomLabel(c)