1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:17:35 +00:00

Kernel: Convert klog() => AK::Format in Storage

This commit is contained in:
Andreas Kling 2021-03-12 14:02:17 +01:00
parent feda905c3f
commit 8a7fe86ee0
4 changed files with 7 additions and 17 deletions

View file

@ -41,7 +41,7 @@ RamdiskDevice::RamdiskDevice(const RamdiskController& controller, OwnPtr<Region>
: StorageDevice(controller, major, minor, 512, 0)
, m_region(move(region))
{
klog() << "Ramdisk: Device #" << minor << " @ " << m_region->vaddr() << " length " << m_region->size();
dmesgln("Ramdisk: Device #{} @ {}, length {}", minor, m_region->vaddr(), m_region->size());
}
RamdiskDevice::~RamdiskDevice()