We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 055683a commit 5256800Copy full SHA for 5256800
aptos-node/src/lib.rs
@@ -701,7 +701,10 @@ pub fn setup_environment_and_start_node(
701
702
let maybe_jwk_consensus_key =
703
load_consensus_key_from_secure_storage(&node_config.consensus.safety_rules);
704
- debug!("maybe_jwk_consensus_key={:?}", maybe_jwk_consensus_key);
+ debug!(
705
+ "jwk_consensus_key_err={:?}",
706
+ maybe_jwk_consensus_key.as_ref().err()
707
+ );
708
709
let jwk_consensus_runtime = match (jwk_consensus_network_interfaces, maybe_jwk_consensus_key) {
710
(Some(interfaces), Ok(consensus_key)) => {
0 commit comments