From df77eff98e6b902fbbf58c5a7a6f29309d14934f Mon Sep 17 00:00:00 2001 From: KagChi Date: Fri, 23 Feb 2024 12:06:17 +0700 Subject: [PATCH] chore: debug message --- services/kanao-cache/src/Structures/KanaoCache.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/services/kanao-cache/src/Structures/KanaoCache.ts b/services/kanao-cache/src/Structures/KanaoCache.ts index ddfc934c..0bd4c4f2 100644 --- a/services/kanao-cache/src/Structures/KanaoCache.ts +++ b/services/kanao-cache/src/Structures/KanaoCache.ts @@ -44,6 +44,7 @@ export class KanaoCache extends EventEmitter { this.logger.info("Successfully bind to cache queue!"); await channel.consume(queue, message => { + console.log(JSON.parse(message!.content.toString())); if (message && message.properties.replyTo === clientId) { channel.ack(message); this.emit("dispatch", JSON.parse(message.content.toString()));