From a33ddef38fbaebcb974712d3b48f47c0e11a9703 Mon Sep 17 00:00:00 2001
From: Jeremy Soller <jackpot51@gmail.com>
Date: Mon, 31 Oct 2016 22:12:10 -0600
Subject: [PATCH] remove take message

---
 context/switch.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/context/switch.rs b/context/switch.rs
index f3ace741..a438d899 100644
--- a/context/switch.rs
+++ b/context/switch.rs
@@ -31,7 +31,7 @@ pub unsafe fn switch() -> bool {
         let check_context = |context: &mut Context| -> bool {
             if context.cpu_id == None && cpu_id == 0 {
                 context.cpu_id = Some(cpu_id);
-                println!("{}: take {} {}", cpu_id, context.id, ::core::str::from_utf8_unchecked(&context.name.lock()));
+                // println!("{}: take {} {}", cpu_id, context.id, ::core::str::from_utf8_unchecked(&context.name.lock()));
             }
 
             if context.status == Status::Blocked && context.wake.is_some() {
-- 
GitLab