Author: tkreuzer
Date: Wed Feb 15 16:03:01 2012
New Revision: 55609
URL:
http://svn.reactos.org/svn/reactos?rev=55609&view=rev
Log:
[FREELDR]
Silence some heap debug prints
Modified:
trunk/reactos/boot/freeldr/freeldr/mm/heap_new.c
Modified: trunk/reactos/boot/freeldr/freeldr/mm/heap_new.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/mm/he…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/mm/heap_new.c [iso-8859-1] (original)
+++ trunk/reactos/boot/freeldr/freeldr/mm/heap_new.c [iso-8859-1] Wed Feb 15 16:03:01
2012
@@ -212,7 +212,7 @@
if (Block->Size == 0) break;
}
- ERR("HeapRelease() done, freed %ld pages\n", AllFreePages);
+ TRACE("HeapRelease() done, freed %ld pages\n", AllFreePages);
}
VOID
@@ -221,12 +221,12 @@
PHEAP Heap;
Heap = FrLdrDefaultHeap;
- ERR("Heap statistics for default heap:\n"
+ TRACE("Heap statistics for default heap:\n"
"CurrentAlloc=0x%lx, MaxAlloc=0x%lx, LargestAllocation=0x%lx\n"
"NumAllocs=%ld, NumFrees=%ld\n",
Heap->CurrentAllocBytes, Heap->MaxAllocBytes,
Heap->LargestAllocation,
Heap->NumAllocs, Heap->NumFrees);
- ERR("AllocTime = %I64d, FreeTime = %I64d, sum = %I64d\n",
+ TRACE("AllocTime = %I64d, FreeTime = %I64d, sum = %I64d\n",
Heap->AllocationTime, Heap->FreeTime, Heap->AllocationTime +
Heap->FreeTime);
@@ -234,7 +234,7 @@
HeapRelease(FrLdrDefaultHeap);
Heap = FrLdrTempHeap;
- ERR("Heap statistics for temp heap:\n"
+ TRACE("Heap statistics for temp heap:\n"
"CurrentAlloc=0x%lx, MaxAlloc=0x%lx, LargestAllocation=0x%lx\n"
"NumAllocs=%ld, NumFrees=%ld\n",
Heap->CurrentAllocBytes, Heap->MaxAllocBytes,
Heap->LargestAllocation,