diff --git a/src/runtime2/scheduler.rs b/src/runtime2/scheduler.rs index b27cf5d06aa3b7636674263fd866508504b4317a..e7359488f13d940ccc259ceabb1cb744c0b6de23 100644 --- a/src/runtime2/scheduler.rs +++ b/src/runtime2/scheduler.rs @@ -33,13 +33,6 @@ impl<'a> SchedulerCtx<'a> { println!("[s:{:02}, c:{:03}] {}", self.id, self.comp, text); } } - - // TODO: Obviously remove, but useful for testing - pub(crate) fn log_special(&self, text: &str) { - if self.logging_enabled { - println!("[s:{:02}, c:{:03}] *** *** {}", self.id, self.comp, text); - } - } } impl Scheduler {