no tracing inside members
i want less of this thing, not more
- Id
- 5c47e5bf22bbf06ead5efe92adb2c61e9ad51db7
- Author
- Caio
- Commit time
- 2024-03-15T11:37:47+01:00
Modified src/member.rs
// state is replaced (it's essentially a rejoin)
if known_member.id.win_addr_conflict(&update.id) {
// update lost conflict, it's junk
- tracing::trace!(
- update = tracing::field::debug(&update),
- existing = tracing::field::debug(&known_member),
- "existing won conflict resolution, nothing to do"
- );
return Some(ApplySummary {
is_active_now: known_member.is_active(),
apply_successful: false,
replaced_id: None,
});
}
- tracing::trace!(
- update = tracing::field::debug(&update),
- existing = tracing::field::debug(&known_member),
- "update won conflict resolution"
- );
force_apply = true;
}