mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-05 15:27:04 +00:00
Kernel: Put "Couldn't find user region" spam behind MM_DEBUG
This basically never tells us anything actionable anyway, and it's a real annoyance when doing something validation-heavy like profiling.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user