From 3d1ce0fc20bd6ba7807dbe4b2565fe6fe9134377 Mon Sep 17 00:00:00 2001
From: Will Hunt <half-shot@molrams.com>
Date: Sun, 10 Sep 2017 17:16:16 +0100
Subject: [PATCH] Add log line for sent discord messages.

---
 src/bot.ts | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/bot.ts b/src/bot.ts
index 6a160ce..f36b309 100644
--- a/src/bot.ts
+++ b/src/bot.ts
@@ -209,6 +209,7 @@ export class DiscordBot {
         msg = [msg];
     }
     msg.forEach((m: Discord.Message) => {
+      log.verbose("DiscordBot", "Sent ", msg);
       this.sentMessages.push(m.id);
       const evt = new DbEvent();
       evt.MatrixId = event.event_id;
-- 
GitLab