From 7940a5ec5cd033253a720e16803aa28616f1fa96 Mon Sep 17 00:00:00 2001 From: Will Hunt <half-shot@molrams.com> Date: Sun, 17 Sep 2017 09:46:58 +0100 Subject: [PATCH] Logging should warn failed typing notifs --- src/bot.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bot.ts b/src/bot.ts index 38c9b31..c2375e6 100644 --- a/src/bot.ts +++ b/src/bot.ts @@ -522,7 +522,7 @@ export class DiscordBot { return intent.sendTyping(room, isTyping); })); }).catch((err) => { - log.verbose("DiscordBot", "Failed to send typing indicator.", err); + log.warn("DiscordBot", "Failed to send typing indicator.", err); }); } -- GitLab