From f96c37b55c8cbc2d012aa06d32d9de7f0e654cbd Mon Sep 17 00:00:00 2001 From: fccview Date: Wed, 8 Oct 2025 15:01:18 +0100 Subject: [PATCH] remove debugging logs --- app/_server/actions/cronjobs/index.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/_server/actions/cronjobs/index.ts b/app/_server/actions/cronjobs/index.ts index 534e1c3..181b2e2 100644 --- a/app/_server/actions/cronjobs/index.ts +++ b/app/_server/actions/cronjobs/index.ts @@ -270,9 +270,6 @@ export const runCronJob = async ( let executionUser = userInfo ? userInfo.username : "root"; if (dockerExecUser && executionUser === "root") { - console.log( - `Overriding root execution. Running command as user: ${dockerExecUser}` - ); executionUser = dockerExecUser; }