use debug_warn for backfill event evals

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2024-11-17 07:46:36 +00:00
parent 26bcc7e312
commit a05dc03100

View file

@ -9,7 +9,7 @@ use std::{
}; };
use conduit::{ use conduit::{
debug, err, error, implement, info, debug, debug_warn, err, error, implement, info,
pdu::{EventHash, PduBuilder, PduCount, PduEvent}, pdu::{EventHash, PduBuilder, PduCount, PduEvent},
utils, utils,
utils::{stream::TryIgnore, IterStream, MutexMap, MutexMapGuard, ReadyExt}, utils::{stream::TryIgnore, IterStream, MutexMap, MutexMapGuard, ReadyExt},
@ -1128,7 +1128,7 @@ impl Service {
Ok(response) => { Ok(response) => {
for pdu in response.pdus { for pdu in response.pdus {
if let Err(e) = self.backfill_pdu(backfill_server, pdu).boxed().await { 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(()); return Ok(());