From b994808843e59390d7ed6b3597231c5504982cda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Tue, 9 Dec 2025 22:00:00 +0100 Subject: [PATCH] Enable `trace` logging for sync in the `full_node_warp_sync` test This should help us to pinpoint the exact issue. --- .../zombienet-sdk/tests/zombie_ci/full_node_warp_sync.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cumulus/zombienet/zombienet-sdk/tests/zombie_ci/full_node_warp_sync.rs b/cumulus/zombienet/zombienet-sdk/tests/zombie_ci/full_node_warp_sync.rs index f15b17647c599..ce7021b96608e 100644 --- a/cumulus/zombienet/zombienet-sdk/tests/zombie_ci/full_node_warp_sync.rs +++ b/cumulus/zombienet/zombienet-sdk/tests/zombie_ci/full_node_warp_sync.rs @@ -187,7 +187,7 @@ async fn build_network_config() -> Result { }) .with_node(|node| { node.with_name("dave").with_args(vec![ - ("-lparachain=debug").into(), + ("-lparachain=debug,sync=trace").into(), ("--no-beefy").into(), ("--reserved-only").into(), ( @@ -214,7 +214,7 @@ async fn build_network_config() -> Result { .with_collator(|n| n.with_name("one").with_db_snapshot(DB_SNAPSHOT_PARACHAIN)) .with_collator(|n| { n.with_name("two").validator(false).with_args(vec![ - ("-lsync=debug").into(), + ("-lsync=trace").into(), ("--sync", "warp").into(), ("--").into(), ("--sync", "warp").into(), @@ -222,14 +222,14 @@ async fn build_network_config() -> Result { }) .with_collator(|n| { n.with_name("three").validator(false).with_args(vec![ - ("-lsync=debug").into(), + ("-lsync=trace").into(), ("--sync", "warp").into(), ("--relay-chain-rpc-urls", "{{ZOMBIE:alice:ws_uri}}").into(), ]) }) .with_collator(|n| { n.with_name("four").validator(false).with_args(vec![ - ("-lsync=debug").into(), + ("-lsync=trace").into(), ("--sync", "warp").into(), ("--relay-chain-rpc-urls", "{{ZOMBIE:dave:ws_uri}}").into(), ])