Skip to content

Commit aed562a

Browse files
authored
Downgrade light client errors (#7300)
Downgrade light client errors to debug Error messages are alarming and usually indicate somethings wrong with the beacon node. The Light Client service is supposed to minimally impact users, and most will not care if the light client server is erroring. Furthermore, the only errors we've seen in the wild are during hard forks, for the first few epochs before the fork finalizes.
1 parent 7534f57 commit aed562a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

beacon_node/beacon_chain/src/beacon_chain.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4104,7 +4104,7 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
41044104
&mut state,
41054105
)
41064106
.unwrap_or_else(|e| {
4107-
error!(self.log, "error caching light_client data {:?}", e);
4107+
debug!(self.log, "error caching light_client data {:?}", e);
41084108
});
41094109
}
41104110

0 commit comments

Comments
 (0)