diff --git a/defaults/main.yml b/defaults/main.yml index 2cf0f5a..464f8a9 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -80,7 +80,7 @@ rpc_http_port: 3060 rpc_ws_port: 3061 healthcheck_port: 3081 metrics_port: 3082 -log_verbosity: info +rust_log: zksync_external_node=info,zksync_core=info,zksync_core::sync_layer=info,zksync_server=info,zksync_prover=info,zksync_contract_verifier=info,zksync_dal=info,zksync_eth_client=info,zksync_storage=info,zksync_db_manager=info,zksync_merkle_tree=info,zksync_state=info,zksync_utils=info,zksync_types=info,loadnext=info,dev_ticker=info,vm=info,block_sizes_test=info,zksync_verification_key_generator_and_server=info,zksync_object_store=info,setup_key_generator_and_server=info,zksync_circuit_synthesizer=info,zksync_queued_job_processor=info,zksync_health_check=info # Monitoring options section enable_monitoring: false diff --git a/templates/docker-compose.yaml.j2 b/templates/docker-compose.yaml.j2 index dfe6065..1aef1de 100644 --- a/templates/docker-compose.yaml.j2 +++ b/templates/docker-compose.yaml.j2 @@ -91,7 +91,7 @@ services: DATABASE_POOL_SIZE: 200 EN_MAX_BLOCKS_PER_TREE_BATCH: 200 MISC_LOG_FORMAT: json - RUST_LOG: zksync_external_node={{ log_verbosity }} + RUST_LOG: {{ rust_log }} healthcheck: test: [ "CMD", "curl", "-f", "http://localhost:{{ healthcheck_port }}/health" ] interval: 1m