From 66cd7cf90e360caae06534a1e650949df71fa6d1 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 1 Mar 2022 15:27:06 +0100 Subject: [PATCH] remove debug logging --- src/lib/haproxy/configuration.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/haproxy/configuration.ts b/src/lib/haproxy/configuration.ts index eea338ece..b6d899dd6 100644 --- a/src/lib/haproxy/configuration.ts +++ b/src/lib/haproxy/configuration.ts @@ -242,7 +242,6 @@ export async function configureHAProxy() { const output = mustache.render(template, data); const newHash = crypto.createHash('md5').update(output).digest('hex'); const { proxyHash, id } = await db.listSettings(); - console.log({ proxyHash, newHash, output }); if (proxyHash !== newHash) { await db.prisma.setting.update({ where: { id }, data: { proxyHash: newHash } }); console.log('HAProxy configuration changed, updating...');