From 43b2e3ea937ec9f6ed2d18b7276b9d2acbdd87e6 Mon Sep 17 00:00:00 2001 From: Rory& Date: Mon, 16 Feb 2026 21:33:44 +0100 Subject: [PATCH] gateeway debug logs --- src/gateway/Server.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gateway/Server.ts b/src/gateway/Server.ts index 7fea1a279..4918f1b51 100644 --- a/src/gateway/Server.ts +++ b/src/gateway/Server.ts @@ -171,9 +171,12 @@ export class Server { await Config.init(); await initEvent(); // temporary fix + console.log("[Gateway] Clearing voice states"); await cleanupOnStartup(); + console.log("[Gateway] dbg checking if server is listening"); if (!this.server.listening) { + console.log("gonna start listening on", this.port); this.server.listen(this.port); console.log(`[Gateway] online on 0.0.0.0:${this.port}`); }