Uncomment instrument macro

This commit is contained in:
Omar Abdulla
2025-08-28 15:41:38 +03:00
parent 680cc5c174
commit a5a27957d5
+13 -13
View File
@@ -478,19 +478,19 @@ async fn start_cli_reporting_task(reporter: Reporter) {
} }
#[allow(clippy::too_many_arguments)] #[allow(clippy::too_many_arguments)]
// #[instrument( #[instrument(
// level = "info", level = "info",
// name = "Handling Case" name = "Handling Case"
// skip_all, skip_all,
// fields( fields(
// metadata_file_path = %test.metadata.relative_path().display(), metadata_file_path = %test.metadata.relative_path().display(),
// mode = %test.mode, mode = %test.mode,
// case_idx = %test.case_idx, case_idx = %test.case_idx,
// case_name = test.case.name.as_deref().unwrap_or("Unnamed Case"), case_name = test.case.name.as_deref().unwrap_or("Unnamed Case"),
// leader_node = test.leader_node.id(), leader_node = test.leader_node.id(),
// follower_node = test.follower_node.id(), follower_node = test.follower_node.id(),
// ) )
// )] )]
async fn handle_case_driver<'a, L, F>( async fn handle_case_driver<'a, L, F>(
test: Test<'a, L, F>, test: Test<'a, L, F>,
cached_compiler: Arc<CachedCompiler<'a>>, cached_compiler: Arc<CachedCompiler<'a>>,