diff --git a/src/dusk/util/memory.c b/src/dusk/util/memory.c index f1426e84..ff69eb79 100644 --- a/src/dusk/util/memory.c +++ b/src/dusk/util/memory.c @@ -8,19 +8,12 @@ #include "memory.h" #include "assert/assert.h" #include "util/math.h" -#include "log/log.h" size_t memoryGetAllocatedCount(void) { return MEMORY_POINTERS_IN_USE; } void * memoryAllocate(const size_t size) { - logDebug( - "Attempt to allocate %u bytes (%.2fKB) of memory\n", - size, - size / 1024.0f - ); - assertTrue(size > 0, "Cannot allocate 0 bytes of memory."); void *ptr = malloc(size); assertNotNull(ptr, "Memory allocation failed.");