From a05dc0310056c5efc5789158d643951964f8fce4 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Sun, 17 Nov 2024 07:46:36 +0000 Subject: [PATCH] use debug_warn for backfill event evals Signed-off-by: Jason Volk --- src/service/rooms/timeline/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/service/rooms/timeline/mod.rs b/src/service/rooms/timeline/mod.rs index 59fc8e93..a3fc6a0b 100644 --- a/src/service/rooms/timeline/mod.rs +++ b/src/service/rooms/timeline/mod.rs @@ -9,7 +9,7 @@ use std::{ }; use conduit::{ - debug, err, error, implement, info, + debug, debug_warn, err, error, implement, info, pdu::{EventHash, PduBuilder, PduCount, PduEvent}, utils, utils::{stream::TryIgnore, IterStream, MutexMap, MutexMapGuard, ReadyExt}, @@ -1128,7 +1128,7 @@ impl Service { Ok(response) => { for pdu in response.pdus { if let Err(e) = self.backfill_pdu(backfill_server, pdu).boxed().await { - warn!("Failed to add backfilled pdu in room {room_id}: {e}"); + debug_warn!("Failed to add backfilled pdu in room {room_id}: {e}"); } } return Ok(());