This basically never tells us anything actionable anyway, and it's a real annoyance when doing something validation-heavy like profiling.
@@ -263,7 +263,9 @@ Region* MemoryManager::user_region_from_vaddr(Process& process, VirtualAddress v
if (region.contains(vaddr))
return ®ion;
}
+#ifdef MM_DEBUG
dbg() << process << " Couldn't find user region for " << vaddr;
+#endif
return nullptr;