[zion] Don't dump process states on sleep

This commit is contained in:
Drew Galbraith 2023-08-01 10:42:53 -07:00
parent 083ed52ddd
commit 3110087498
1 changed files with 0 additions and 1 deletions

View File

@ -86,7 +86,6 @@ void Scheduler::Yield() {
if (runnable_threads_.size() == 0) {
current_thread_ = sleep_thread_;
dbgln("Sleeping");
gProcMan->DumpProcessStates();
} else {
current_thread_ = runnable_threads_.PopFront();
}