mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 03:37:34 +00:00
Everywhere: Replace a bundle of dbg with dbgln.
These changes are arbitrarily divided into multiple commits to make it easier to find potentially introduced bugs with git bisect.Everything:
This commit is contained in:
parent
11d651d447
commit
872f2a3b90
8 changed files with 16 additions and 15 deletions
|
@ -47,7 +47,7 @@ MBVGADevice::MBVGADevice(PhysicalAddress addr, size_t pitch, size_t width, size_
|
|||
, m_framebuffer_width(width)
|
||||
, m_framebuffer_height(height)
|
||||
{
|
||||
dbg() << "MBVGADevice address=" << addr << ", pitch=" << pitch << ", width=" << width << ", height=" << height;
|
||||
dbgln("MBVGADevice address={}, pitch={}, width={}, height={}", addr, pitch, width, height);
|
||||
s_the = this;
|
||||
}
|
||||
|
||||
|
@ -71,7 +71,7 @@ KResultOr<Region*> MBVGADevice::mmap(Process& process, FileDescription&, Virtual
|
|||
shared);
|
||||
if (!region)
|
||||
return KResult(-ENOMEM);
|
||||
dbg() << "MBVGADevice: mmap with size " << region->size() << " at " << region->vaddr();
|
||||
dbgln("MBVGADevice: mmap with size {} at {}", region->size(), region->vaddr());
|
||||
return region;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue