add geth verbosity setting
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
7ba41237bf
commit
5d535f405d
|
@ -20,6 +20,8 @@ faucet_geth_rpc_port: 8545
|
||||||
faucet_geth_rcp_api: 'eth,net,web3,admin,personal,shh'
|
faucet_geth_rcp_api: 'eth,net,web3,admin,personal,shh'
|
||||||
faucet_geth_alias: 'geth'
|
faucet_geth_alias: 'geth'
|
||||||
faucet_geth_bootnodes: []
|
faucet_geth_bootnodes: []
|
||||||
|
# 0=silent, 1=error, 2=warn, 3=info, 4=debug, 5=detail
|
||||||
|
faucet_geth_log_level: 3
|
||||||
|
|
||||||
# generic container settings
|
# generic container settings
|
||||||
cont_state: started
|
cont_state: started
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
{% elif faucet_network == "ropsten" %}
|
{% elif faucet_network == "ropsten" %}
|
||||||
--testnet
|
--testnet
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
--verbosity={{ faucet_geth_log_level }}
|
||||||
--port={{ faucet_geth_main_port }}
|
--port={{ faucet_geth_main_port }}
|
||||||
--unlock={{ faucet_account_addr }}
|
--unlock={{ faucet_account_addr }}
|
||||||
--datadir=/data
|
--datadir=/data
|
||||||
|
|
Loading…
Reference in New Issue