More logging around failure (#9967) (#9968)

automerge
This commit is contained in:
mergify[bot]
2020-05-10 17:23:30 -07:00
committed by GitHub
parent e7c0629951
commit 50eba96b58

View File

@ -913,8 +913,8 @@ impl Blockstore {
// ToDo: This is a potential slashing condition // ToDo: This is a potential slashing condition
warn!("Received multiple erasure configs for the same erasure set!!!"); warn!("Received multiple erasure configs for the same erasure set!!!");
warn!( warn!(
"Stored config: {:#?}, new config: {:#?}", "Slot: {}, shred index: {}, set_index: {}, is_duplicate: {}, stored config: {:#?}, new config: {:#?}",
erasure_meta.config, erasure_config slot, shred.index(), set_index, self.has_duplicate_shreds_in_slot(slot), erasure_meta.config, erasure_config
); );
} }