Skip to content

Commit

Permalink
Re-add debug logging to the gateway
Browse files Browse the repository at this point in the history
  • Loading branch information
PapiOphidian committed Nov 12, 2023
1 parent 0b53729 commit ec4ec50
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/runtime-gateway/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ confprovider.addCallback(() => {

await sql.connect()
void new REPLProvider({ client, webconnector, confprovider, sql, startAnnouncement })
client.on("error", console.error)
client.on("debug", d => console.log(d))
client.on("error", e => console.error(e))
client.on("event", async packet => {
if (packet.t === "VOICE_STATE_UPDATE") {

Expand Down

0 comments on commit ec4ec50

Please sign in to comment.