Comment out console log for server start

This commit is contained in:
2025-05-28 05:49:06 +02:00
parent a25cea62b7
commit 1ba7bc08e2

View File

@@ -67,5 +67,5 @@ wss.on('connection', (socket) => {
// --- Server Start ---
const PORT = process.env.PORT || 3000;
server.listen(PORT, () => {
console.log(`Server läuft auf http://localhost:${PORT}`);
//console.log(`Server läuft auf http://localhost:${PORT}`);
});