diff --git a/src/allocator/linked_list.rs b/src/allocator/linked_list.rs
index 989101c4aeb1769fe522986873184d2895f2d8cf..61442ebb4b418a04fcb9e79b53cfb22eb51e5acd 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() {