mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2025-09-10 19:42:50 +02:00
fix(fed): Alter log levels to be less noisy
This commit is contained in:
parent
0abfc192d4
commit
e991a10de2
1 changed files with 3 additions and 3 deletions
|
@ -183,9 +183,9 @@ impl Service {
|
||||||
if let Some(status) = statuses.get(&dest.clone()) {
|
if let Some(status) = statuses.get(&dest.clone()) {
|
||||||
if matches!(status, TransactionStatus::Running) {
|
if matches!(status, TransactionStatus::Running) {
|
||||||
// If the server is in backoff, clear it
|
// If the server is in backoff, clear it
|
||||||
warn!(
|
info!(
|
||||||
?dest,
|
?dest,
|
||||||
"Catching up destination with {} new events",
|
"Catching up previously failed destination with {}+ new events",
|
||||||
new_events_vec.len()
|
new_events_vec.len()
|
||||||
);
|
);
|
||||||
statuses.insert(dest.clone(), TransactionStatus::Running);
|
statuses.insert(dest.clone(), TransactionStatus::Running);
|
||||||
|
@ -885,7 +885,7 @@ impl Service {
|
||||||
info!(%txn_id, %server, "Sent {} PDUs, {} EDUs", pdu_count, edu_count);
|
info!(%txn_id, %server, "Sent {} PDUs, {} EDUs", pdu_count, edu_count);
|
||||||
})
|
})
|
||||||
.inspect_err(|e| {
|
.inspect_err(|e| {
|
||||||
error!(%txn_id, %server, "Failed to send transaction ({} PDUs, {} EDUs): {e:?}", pdu_count, edu_count);
|
info!(%txn_id, %server, "Failed to send transaction ({} PDUs, {} EDUs): {e:?}", pdu_count, edu_count);
|
||||||
});
|
});
|
||||||
|
|
||||||
for (event_id, result) in result.iter().flat_map(|resp| resp.pdus.iter()) {
|
for (event_id, result) in result.iter().flat_map(|resp| resp.pdus.iter()) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue