more diagnostic logging

This commit is contained in:
James Wilson
2021-08-10 16:49:04 +01:00
parent 3319709f7b
commit ab2303ce5c
@@ -277,6 +277,11 @@ impl InnerLoop {
.map(|c| c.len())
.sum();
let num_messages_to_feeds = self.feed_channels
.values()
.map(|c| c.len())
.sum();
println!("Periodic update at {:?}:", std::time::SystemTime::now());
dbg!(node_ids);
dbg!(node_count);
@@ -286,6 +291,7 @@ impl InnerLoop {
dbg!(feed_to_chain);
dbg!(num_subscribed_chains);
dbg!(num_subscribed_chain_feeds);
dbg!(num_messages_to_feeds);
drop(rx);
}