From 8cee6abfa3b7f7f7adc3da9b2c96b7fc7f59803e Mon Sep 17 00:00:00 2001 From: ForAeons Date: Fri, 12 Apr 2024 16:05:14 +0800 Subject: [PATCH] Remove debug statements --- vm/ignite/src/runtime.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/vm/ignite/src/runtime.rs b/vm/ignite/src/runtime.rs index 1f80c7c..1af3e60 100644 --- a/vm/ignite/src/runtime.rs +++ b/vm/ignite/src/runtime.rs @@ -197,11 +197,6 @@ impl Runtime { .pop_front() .expect("No threads in ready queue"); - println!( - "Zombifying thread operand_stack: {:?}", - ¤t_thread.operand_stack - ); - self.zombie_threads .insert(current_thread_id, current_thread); self.thread_states