fix(main): show correct relay url on relay change

This commit is contained in:
xeruf 2024-10-15 03:02:16 +02:00
parent b0c92e64fa
commit bdb8b6e814
1 changed files with 1 additions and 1 deletions

View File

@ -299,7 +299,7 @@ async fn main() -> Result<()> {
queue_events.append(&mut events);
queue = Some((queue_url, queue_events));
} else {
info!("Sending {} events to {url} due to relay change", queue_events.len());
info!("Sending {} events to {queue_url} due to relay change", queue_events.len());
client.batch_event_to(vec![queue_url], queue_events, RelaySendOptions::new()).await;
queue = None;
}