mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 08:57:34 +00:00
UserspaceEmulator: Convert a weird klog(!) to dbgln()
This commit is contained in:
parent
b8ad3d7ccf
commit
0c35c664e6
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ Optional<Range> RangeAllocator::allocate_anywhere(size_t size, size_t alignment)
|
||||||
carve_at_index(i, allocated_range);
|
carve_at_index(i, allocated_range);
|
||||||
return allocated_range;
|
return allocated_range;
|
||||||
}
|
}
|
||||||
klog() << "RangeAllocator: Failed to allocate anywhere: " << size << ", " << alignment;
|
dbgln("RangeAllocator: Failed to allocate anywhere: size={}, alignment={}", size, alignment);
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue