From 90724644909da734e4727a45c810db0e147eba64 Mon Sep 17 00:00:00 2001 From: shrimbly Date: Tue, 24 Feb 2026 13:08:07 +1300 Subject: [PATCH] chore: remove debug console.log from VideoStitch executor - Remove 4 debug console.log/console.warn statements - Audio pipeline already validated, verbose logging no longer needed - Keeps production code clean of debug noise --- src/store/execution/videoProcessingExecutors.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/store/execution/videoProcessingExecutors.ts b/src/store/execution/videoProcessingExecutors.ts index c6af158d..edb20225 100644 --- a/src/store/execution/videoProcessingExecutors.ts +++ b/src/store/execution/videoProcessingExecutors.ts @@ -55,7 +55,6 @@ export async function executeVideoStitch(ctx: NodeExecutionContext): Promise 0 && inputs.audio[0]) { - console.log('[VideoStitch] Audio input detected, preparing audio...'); const { prepareAudioAsync } = await import("@/hooks/useAudioMixing"); const audioUrl = inputs.audio[0]; const audioResponse = await fetch(audioUrl); @@ -69,14 +68,6 @@ export async function executeVideoStitch(ctx: NodeExecutionContext): Promise