From 92102ff28206e2f4ba08371b7d50a992cdbaf99e Mon Sep 17 00:00:00 2001 From: theoleuthardt Date: Fri, 21 Feb 2025 15:18:15 +0100 Subject: [PATCH] fix: no logging needed anymore --- backend/src/routes/generateqrcode.route.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/src/routes/generateqrcode.route.ts b/backend/src/routes/generateqrcode.route.ts index 9ff2e9b..4084101 100644 --- a/backend/src/routes/generateqrcode.route.ts +++ b/backend/src/routes/generateqrcode.route.ts @@ -26,7 +26,6 @@ export async function generateQRCode(app: FastifyInstance) { try { const qrCodeUrl = await QRCode.toDataURL(data.qrcodeContent); - console.log("QR Code generated:", qrCodeUrl); return reply .header("Content-Type", "application/json") .status(200)