From 797d86b7a7e9b22f72511ce51100a9c1d6eb601c Mon Sep 17 00:00:00 2001
From: Jeremy Soller <jackpot51@gmail.com>
Date: Mon, 29 Jan 2018 21:36:17 -0700
Subject: [PATCH] Remove debug message

---
 src/allocator/linked_list.rs | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/allocator/linked_list.rs b/src/allocator/linked_list.rs
index 989101c4..61442ebb 100644
--- a/src/allocator/linked_list.rs
+++ b/src/allocator/linked_list.rs
@@ -33,8 +33,6 @@ unsafe impl<'a> Alloc for &'a Allocator {
                         panic!("__rust_allocate: heap not initialized");
                     };
 
-                    println!("Expand heap at {} MB by {} MB", size/1024/1024, ::KERNEL_HEAP_SIZE/1024/1024);
-
                     super::map_heap(&mut ActivePageTable::new(), ::KERNEL_HEAP_OFFSET + size, ::KERNEL_HEAP_SIZE);
 
                     if let Some(ref mut heap) = *HEAP.lock() {
-- 
GitLab