use debug_warn for backfill event evals
Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
parent
26bcc7e312
commit
a05dc03100
1 changed files with 2 additions and 2 deletions
|
@ -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(());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue