From 0ecf86d8a35a12909a31e941090056cfd8454368 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Thu, 3 Nov 2022 13:47:49 +0100 Subject: [PATCH] remove debug --- apps/api/src/routes/webhooks/traefik/handlers.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/apps/api/src/routes/webhooks/traefik/handlers.ts b/apps/api/src/routes/webhooks/traefik/handlers.ts index 8b6e9a775..1889d897b 100644 --- a/apps/api/src/routes/webhooks/traefik/handlers.ts +++ b/apps/api/src/routes/webhooks/traefik/handlers.ts @@ -5,7 +5,6 @@ import { OnlyId } from "../../../types"; import { getTemplates } from "../../../lib/services"; async function applicationConfiguration(traefik: any, remoteId: string | null = null) { - console.log({ type: 'applications', remoteId }) let applications = [] if (remoteId) { applications = await prisma.application.findMany({ @@ -21,7 +20,6 @@ async function applicationConfiguration(traefik: any, remoteId: string | null = const configurableApplications = [] if (applications.length > 0) { for (const application of applications) { - console.log(application) const { fqdn, id, @@ -114,7 +112,6 @@ async function applicationConfiguration(traefik: any, remoteId: string | null = } } for (const application of configurableApplications) { - console.log(application.id) let { id, port, isCustomSSL, pathPrefix, isHttps, nakedDomain, isWWW, domain, dualCerts } = application if (isHttps) { traefik.http.routers[`${id}-${port || 'default'}`] = generateHttpRouter(`${id}-${port || 'default'}`, nakedDomain, pathPrefix) @@ -196,7 +193,6 @@ async function applicationConfiguration(traefik: any, remoteId: string | null = } } async function serviceConfiguration(traefik: any, remoteId: string | null = null) { - console.log({ type: 'services', remoteId }) let services = []; if (remoteId) { services = await prisma.service.findMany({