From bc45b003137c0717703863528f10d61403ab57bb Mon Sep 17 00:00:00 2001
From: V02460 <V02460@gmail.com>
Date: Wed, 7 Aug 2019 17:29:16 +0200
Subject: [PATCH] Change log level for redactions with no linked room

Co-Authored-By: Will Hunt <will@half-shot.uk>
---
 src/matrixeventprocessor.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/matrixeventprocessor.ts b/src/matrixeventprocessor.ts
index c71b611..612f49a 100644
--- a/src/matrixeventprocessor.ts
+++ b/src/matrixeventprocessor.ts
@@ -123,7 +123,7 @@ export class MatrixEventProcessor {
             return;
         } else if (event.type === "m.room.redaction") {
             if (!context.rooms.remote) {
-                log.info("Got radaction event with no linked room. Ignoring.");
+                log.warn("Got radaction event with no linked room. Ignoring.");
                 return;
             }
             await this.discord.ProcessMatrixRedact(event);
-- 
GitLab