From f411188951907ebf655cb4b9a088f986dfbeb1b1 Mon Sep 17 00:00:00 2001 From: Santiago Palladino Date: Tue, 28 Jan 2025 11:41:23 -0300 Subject: [PATCH] chore: Use json log format for eth devnet (#11564) So we can process them properly. --- spartan/aztec-network/eth-devnet/entrypoints/eth-beacon.sh | 1 + spartan/aztec-network/eth-devnet/entrypoints/eth-execution.sh | 1 + spartan/aztec-network/eth-devnet/entrypoints/eth-validator.sh | 1 + 3 files changed, 3 insertions(+) diff --git a/spartan/aztec-network/eth-devnet/entrypoints/eth-beacon.sh b/spartan/aztec-network/eth-devnet/entrypoints/eth-beacon.sh index 040050ab0da..51d146db7a2 100755 --- a/spartan/aztec-network/eth-devnet/entrypoints/eth-beacon.sh +++ b/spartan/aztec-network/eth-devnet/entrypoints/eth-beacon.sh @@ -29,4 +29,5 @@ lighthouse bn \ --execution-endpoints=${ETH_EXECUTION_URL} \ --execution-jwt-secret-key="61e1dd9539e8cc37b3d71dcf8ce372f0e119cc1c73426ee80472a4214f2a41a1" \ --allow-insecure-genesis-sync \ + --log-format=JSON \ --debug-level=info \ No newline at end of file diff --git a/spartan/aztec-network/eth-devnet/entrypoints/eth-execution.sh b/spartan/aztec-network/eth-devnet/entrypoints/eth-execution.sh index ded9b385ab3..b1c900c1a7b 100755 --- a/spartan/aztec-network/eth-devnet/entrypoints/eth-execution.sh +++ b/spartan/aztec-network/eth-devnet/entrypoints/eth-execution.sh @@ -16,4 +16,5 @@ exec reth node \ --authrpc.jwtsecret="/genesis/jwt-secret.hex" \ --chain="/genesis/genesis.json" \ --datadir="/data" \ + --log.stdout.format=json \ -vv \ No newline at end of file diff --git a/spartan/aztec-network/eth-devnet/entrypoints/eth-validator.sh b/spartan/aztec-network/eth-devnet/entrypoints/eth-validator.sh index 20c87cdb788..f16c989a7c7 100755 --- a/spartan/aztec-network/eth-devnet/entrypoints/eth-validator.sh +++ b/spartan/aztec-network/eth-devnet/entrypoints/eth-validator.sh @@ -26,4 +26,5 @@ lighthouse vc \ --testnet-dir=/genesis \ --init-slashing-protection \ --suggested-fee-recipient="0xff00000000000000000000000000000000c0ffee" \ + --log-format=JSON \ --debug-level=debug \ No newline at end of file