mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2025-06-26 16:26:37 +02:00
modify more log strings so they're more useful than not
This commit is contained in:
parent
4d6c54a45e
commit
b7004aa508
2 changed files with 3 additions and 3 deletions
|
@ -728,7 +728,7 @@ where
|
||||||
{
|
{
|
||||||
let mut room_id = None;
|
let mut room_id = None;
|
||||||
while let Some(sort_ev) = event {
|
while let Some(sort_ev) = event {
|
||||||
debug!(event_id = sort_ev.event_id().as_str(), "mainline");
|
trace!(event_id = sort_ev.event_id().as_str(), "mainline");
|
||||||
if room_id.is_none() {
|
if room_id.is_none() {
|
||||||
room_id = Some(sort_ev.room_id().to_owned());
|
room_id = Some(sort_ev.room_id().to_owned());
|
||||||
}
|
}
|
||||||
|
|
|
@ -1153,7 +1153,7 @@ impl Service {
|
||||||
.boxed();
|
.boxed();
|
||||||
|
|
||||||
while let Some(ref backfill_server) = servers.next().await {
|
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
|
let response = self
|
||||||
.services
|
.services
|
||||||
.sending
|
.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(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue