Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2025-04-04 12:24:29 -07:00
parent 4d31fb890d
commit 310693c1aa
6 changed files with 142 additions and 1 deletions

View File

@ -693,6 +693,10 @@ impl ExecutorContext {
.await;
let outcome = exec_state.to_wasm_outcome(result.0).await;
println!("batch_end: {:#?}", self.engine.batch_end().read().await);
println!("responses: {:#?}", self.engine.responses().read().await);
println!("batch: {:#?}", self.engine.batch().read().await);
Ok(outcome)
}