diff --git a/apps/api/src/routes/api/v1/applications/handlers.ts b/apps/api/src/routes/api/v1/applications/handlers.ts index fa9378c90..c801cae34 100644 --- a/apps/api/src/routes/api/v1/applications/handlers.ts +++ b/apps/api/src/routes/api/v1/applications/handlers.ts @@ -177,7 +177,6 @@ export async function getApplicationFromDB(id: string, teamId: string) { } export async function getApplicationFromDBWebhook(projectId: number, branch: string) { try { - console.log({ projectId, branch }) let application = await prisma.application.findFirst({ where: { projectId, branch, settings: { autodeploy: true } }, include: { @@ -188,7 +187,6 @@ export async function getApplicationFromDBWebhook(projectId: number, branch: str persistentStorage: true } }); - console.log({ application }) if (!application) { throw { status: 500, message: 'Application not configured.' } } diff --git a/apps/api/src/routes/webhooks/github/handlers.ts b/apps/api/src/routes/webhooks/github/handlers.ts index 63a857502..3f691d7e8 100644 --- a/apps/api/src/routes/webhooks/github/handlers.ts +++ b/apps/api/src/routes/webhooks/github/handlers.ts @@ -86,7 +86,6 @@ export async function gitHubEvents(request: FastifyRequest<GitHubEvents>): Promi projectId = repository.id; branch = body.pull_request.head.ref.includes('/') ? body.pull_request.head.ref.split('/')[2] : body.pull_request.head.ref; } - console.log({repository, projectId, branch}) if (!projectId || !branch) { throw { status: 500, message: 'Cannot parse projectId or branch from the webhook?!' } } diff --git a/apps/api/src/routes/webhooks/gitlab/handlers.ts b/apps/api/src/routes/webhooks/gitlab/handlers.ts index 7da5f137c..0e7f8ec5d 100644 --- a/apps/api/src/routes/webhooks/gitlab/handlers.ts +++ b/apps/api/src/routes/webhooks/gitlab/handlers.ts @@ -34,7 +34,6 @@ export async function configureGitLabApp(request: FastifyRequest<ConfigureGitLab } return reply.redirect(`/webhooks/success?token=${data.access_token}`) } catch ({ status, message, ...other }) { - console.log(other) return errorHandler({ status, message }) } }