Skip to content

Commit 5a88acf

Browse files
committed
feat: added logs for execution
1 parent c2ceddc commit 5a88acf

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

crates/base/src/store.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,15 @@ impl AdapterStore {
131131
}
132132

133133
let uuid = uuid::Uuid::new_v4().to_string();
134+
let flow_id = flow.flow_id;
134135
let execution_flow: ExecutionFlow = Self::convert_validation_flow(flow, input_value);
135136
let bytes = execution_flow.encode_to_vec();
136137
let topic = format!("execution.{}", uuid);
138+
log::info!(
139+
"Requesting the exectition of the flow: {} with an execution id {}",
140+
flow_id,
141+
uuid
142+
);
137143
let result = self.client.request(topic, bytes.into()).await;
138144

139145
match result {

0 commit comments

Comments
 (0)