From 492d51337c2842ca11a9ec4b794917c0d235738a Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Sat, 8 Mar 2025 23:46:06 -0600 Subject: [PATCH] chore(github): remove debug console log in GitHub deployment handler --- apps/dokploy/pages/api/deploy/github.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/dokploy/pages/api/deploy/github.ts b/apps/dokploy/pages/api/deploy/github.ts index bd5ef509..77ce8bda 100644 --- a/apps/dokploy/pages/api/deploy/github.ts +++ b/apps/dokploy/pages/api/deploy/github.ts @@ -91,7 +91,6 @@ export default async function handler( if (req.headers["x-github-event"] === "push") { try { - console.log("githubBody", githubBody.commits); const branchName = githubBody?.ref?.replace("refs/heads/", ""); const repository = githubBody?.repository?.name; const deploymentTitle = extractCommitMessage(req.headers, req.body);