Merge branch 'release/2025.1-reeses' into develop

This commit is contained in:
Jędrzej Stuczyński
2025-01-15 10:13:27 +00:00
30 changed files with 885 additions and 252 deletions
@@ -141,8 +141,8 @@ impl<C> PacketForwarder<C> {
let channel_len = self.packet_sender.len();
if processed % 1000 == 0 {
match channel_len {
n if n > 200 => error!("there are currently {n} mix packets waiting to get forwarded!"),
n if n > 50 => warn!("there are currently {n} mix packets waiting to get forwarded"),
n if n > 1000 => error!("there are currently {n} mix packets waiting to get forwarded - the node seems to be significantly overloaded!"),
n if n > 500 => warn!("there are currently {n} mix packets waiting to get forwarded - is the node overloaded?"),
n => trace!("there are currently {n} mix packets waiting to get forwarded"),
}
}