Skip to content

Commit

Permalink
ci: max logging if debug mode is detected
Browse files Browse the repository at this point in the history
  • Loading branch information
erwanor authored and conorsch committed Jan 24, 2024
1 parent 33c28ab commit 82ae2e3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion deployments/scripts/smoke-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,12 @@ if ! hash cometbft > /dev/null 2>&1 ; then
exit 1
fi

export RUST_LOG="pclientd=debug,pcli=debug,pd=info,penumbra=info"
# If the action is running in debugging mode, then show me *everything*
if [ -n "$RUNNER_DEBUG" ]; then
export RUST_LOG=debug
else
export RUST_LOG="info,network_integration=debug,pclientd=debug,pcli=info,pd=info,penumbra=info"
fi

# Duration that the network will be left running before script exits.
TESTNET_RUNTIME="${TESTNET_RUNTIME:-120}"
Expand Down

0 comments on commit 82ae2e3

Please sign in to comment.