diff --git a/apps/sim/lib/logs/execution/logger.ts b/apps/sim/lib/logs/execution/logger.ts index f7b298a131..acca8db01c 100644 --- a/apps/sim/lib/logs/execution/logger.ts +++ b/apps/sim/lib/logs/execution/logger.ts @@ -372,9 +372,6 @@ export class ExecutionLogger implements IExecutionLoggerService { ? Math.max(0, Math.round(rawDurationMs)) : 0 - const redactedWorkflowInput = - workflowInput !== undefined ? redactApiKeys(filterForDisplay(workflowInput)) : undefined - const completedExecutionData = this.buildCompletedExecutionData({ existingExecutionData, traceSpans: redactedTraceSpans, @@ -383,7 +380,7 @@ export class ExecutionLogger implements IExecutionLoggerService { completionFailure, executionCost, executionState, - workflowInput: redactedWorkflowInput, + workflowInput, }) const [updatedLog] = await db