From e576878544d31a752b13560c02fe1b226bb6f827 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Fri, 4 Aug 2023 18:16:39 +0200 Subject: [PATCH] Removed debug statements from the app.js --- server/handler/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/handler/app.js b/server/handler/app.js index 7cb336f..0158bd4 100644 --- a/server/handler/app.js +++ b/server/handler/app.js @@ -41,7 +41,7 @@ module.exports = (io, socket) => { socket.emit("install", {status: "success", step}); queue.shift(); execQueue(); - }).on("data", (e) => {console.log(e.toString())}); + }).on("data", () => {}); }); }