remove debug logging

This commit is contained in:
Andras Bacsai 2022-03-01 15:27:06 +01:00
parent 9a599981ef
commit 66cd7cf90e

View File

@ -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...');