summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-03-10 15:21:26 +0100
committerAndreas Kling <kling@serenityos.org>2021-03-10 15:21:26 +0100
commitced8dfa0376a2d65b03ea5b26e2c464bd5c7ffb6 (patch)
treecd16d4a2d0f0cdae43c080eafd94b5b58fb69301 /Userland
parent0e18c7ffda9d38dbb1927cc9a4bd0f717f87ad80 (diff)
downloadserenity-ced8dfa0376a2d65b03ea5b26e2c464bd5c7ffb6.zip
UserspaceEmulator: Remove debug spam about tracked malloc blocks
Diffstat (limited to 'Userland')
-rw-r--r--Userland/DevTools/UserspaceEmulator/MallocTracer.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/Userland/DevTools/UserspaceEmulator/MallocTracer.cpp b/Userland/DevTools/UserspaceEmulator/MallocTracer.cpp
index 111dc9c55d..0c753d0fdd 100644
--- a/Userland/DevTools/UserspaceEmulator/MallocTracer.cpp
+++ b/Userland/DevTools/UserspaceEmulator/MallocTracer.cpp
@@ -95,8 +95,6 @@ void MallocTracer::target_did_malloc(Badge<Emulator>, FlatPtr address, size_t si
// Mark the containing mmap region as a malloc block!
mmap_region.set_malloc(true);
-
- dbgln("Tracking malloc block @ {:p} with chunk_size={}, chunk_count={}", malloc_data.address, malloc_data.chunk_size, malloc_data.mallocations.size());
}
auto* mallocation = mmap_region.malloc_metadata()->mallocation_for_address(address);
VERIFY(mallocation);