more logging improvements (#4885)

## Issue Addressed

-downgrades `Missing components over rpc` to debug because this isn't unusual and just results in a re-try
-removes the result from  `Block component processed for lookup` because this prints the full block on an unknown parent error

Co-authored-by: realbigsean <seananderson33@gmail.com>
This commit is contained in:
realbigsean 2023-11-03 13:31:27 +00:00
parent f2aabe915b
commit bcca88a150
2 changed files with 2 additions and 2 deletions

View File

@ -340,7 +340,7 @@ impl<T: BeaconChainTypes> NetworkBeaconProcessor<T> {
);
}
Ok(AvailabilityProcessingStatus::MissingComponents(_, _)) => {
warn!(
debug!(
self.log,
"Missing components over rpc";
"block_hash" => %block_root,

View File

@ -786,7 +786,7 @@ impl<T: BeaconChainTypes> BlockLookups<T> {
self.log,
"Block component processed for lookup";
"response_type" => ?R::response_type(),
"result" => ?result,
"block_root" => ?root,
);
match result {