Skip to content

Commit a733528

Browse files
Apply suggestions from code review
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Signed-off-by: Raphael Götz <52959657+raphael-goetz@users.noreply.github.com>
1 parent 428ba8f commit a733528

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

crates/taurus/src/client/runtime_execution.rs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,11 @@ impl TaurusRuntimeExecutionService {
2424
}
2525

2626
pub async fn update_runtime_execution(&mut self, runtime_execution: ExecutionResult) {
27-
log::info!("Updating the current Runtime Execution!");
28-
log::debug!(
29-
"ExecutionResult payload sent to execution service: {:?}",
30-
runtime_execution
27+
log::info!(
28+
"Transmitting execution result to Aquila (execution_id={}, flow_id={}, node_results={})",
29+
runtime_execution.execution_identifier.as_str(),
30+
runtime_execution.flow_id,
31+
runtime_execution.node_execution_results.len()
3132
);
3233

3334
let request = Request::from_parts(

0 commit comments

Comments
 (0)