From 25d385ff12d3d5ee392ed3b8465c3c55a9e8bd19 Mon Sep 17 00:00:00 2001 From: mrekucci <4932785+mrekucci@users.noreply.github.com> Date: Wed, 24 Jan 2024 15:40:45 +0100 Subject: [PATCH] feat: allow change the geth verbosity by env variable --- geth-poa/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geth-poa/entrypoint.sh b/geth-poa/entrypoint.sh index b67afa50ff..f0543ef1cf 100644 --- a/geth-poa/entrypoint.sh +++ b/geth-poa/entrypoint.sh @@ -3,7 +3,7 @@ set -exu GETH_BIN_PATH=${GETH_BIN_PATH:-geth} GENESIS_L1_PATH=${GENESIS_L1_PATH:-/genesis.json} -VERBOSITY=3 +VERBOSITY=${VERBOSITY:-3} GETH_DATA_DIR=${GETH_DATA_DIR:-/data} GETH_CHAINDATA_DIR="$GETH_DATA_DIR/geth/chaindata" GETH_KEYSTORE_DIR="$GETH_DATA_DIR/keystore"