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:
parent
f2aabe915b
commit
bcca88a150
@ -340,7 +340,7 @@ impl<T: BeaconChainTypes> NetworkBeaconProcessor<T> {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
Ok(AvailabilityProcessingStatus::MissingComponents(_, _)) => {
|
Ok(AvailabilityProcessingStatus::MissingComponents(_, _)) => {
|
||||||
warn!(
|
debug!(
|
||||||
self.log,
|
self.log,
|
||||||
"Missing components over rpc";
|
"Missing components over rpc";
|
||||||
"block_hash" => %block_root,
|
"block_hash" => %block_root,
|
||||||
|
@ -786,7 +786,7 @@ impl<T: BeaconChainTypes> BlockLookups<T> {
|
|||||||
self.log,
|
self.log,
|
||||||
"Block component processed for lookup";
|
"Block component processed for lookup";
|
||||||
"response_type" => ?R::response_type(),
|
"response_type" => ?R::response_type(),
|
||||||
"result" => ?result,
|
"block_root" => ?root,
|
||||||
);
|
);
|
||||||
|
|
||||||
match result {
|
match result {
|
||||||
|
Loading…
Reference in New Issue
Block a user