Skip to content

Commit

Permalink
Fix missed block logs (#4922)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsproul authored Nov 16, 2023
1 parent e181741 commit d04e361
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions beacon_node/beacon_chain/src/validator_monitor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -621,19 +621,19 @@ impl<T: EthSpec> ValidatorMonitor<T> {
"parent block root" => ?prev_block_root,
);
}
} else {
warn!(
self.log,
"Missing validator index";
"info" => "potentially inconsistency in the validator manager",
"index" => i,
)
}
} else {
warn!(
self.log,
"Missing validator index";
"info" => "potentially inconsistency in the validator manager",
"index" => i,
)
}
} else {
debug!(
self.log,
"Could not get proposers for from cache";
"Could not get proposers from cache";
"epoch" => ?slot_epoch
);
}
Expand Down

0 comments on commit d04e361

Please sign in to comment.