modify more log strings so they're more useful than not

This commit is contained in:
nexy7574 2025-06-12 01:05:45 +01:00 committed by Jacob Taylor
commit a96f7afe71
2 changed files with 3 additions and 3 deletions

View file

@ -1153,7 +1153,7 @@ impl Service {
.boxed();
while let Some(ref backfill_server) = servers.next().await {
info!("Asking {backfill_server} for backfill");
info!("Asking {backfill_server} for backfill in {:?}", room_id.to_owned());
let response = self
.services
.sending
@ -1181,7 +1181,7 @@ impl Service {
}
}
info!("No servers could backfill, but backfill was needed in room {room_id}");
warn!("No servers could backfill, but backfill was needed in room {room_id}");
Ok(())
}