summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2026-02-16 21:33:44 +0100
committerRory& <root@rory.gay>2026-02-16 21:33:44 +0100
commit43b2e3ea937ec9f6ed2d18b7276b9d2acbdd87e6 (patch)
tree2602d6e256869c3a9c879ac767bf8adb7fa08288 /src
parentFix loading discord guild templates (diff)
downloadserver-ts-43b2e3ea937ec9f6ed2d18b7276b9d2acbdd87e6.tar.xz
gateeway debug logs
Diffstat (limited to 'src')
-rw-r--r--src/gateway/Server.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gateway/Server.ts b/src/gateway/Server.ts

index 7fea1a27..4918f1b5 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}`); }