mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
InodeVMObject: Use dbg() instead of dbgprintf()
This commit is contained in:
parent
7deb1f07c3
commit
3f95a7fc97
Notes:
sideshowbarker
2024-07-19 09:01:37 +09:00
Author: https://github.com/supercomputer7 Commit: https://github.com/SerenityOS/serenity/commit/3f95a7fc975 Pull-request: https://github.com/SerenityOS/serenity/pull/1290
1 changed files with 1 additions and 3 deletions
|
@ -87,9 +87,7 @@ size_t InodeVMObject::amount_dirty() const
|
|||
|
||||
void InodeVMObject::inode_size_changed(Badge<Inode>, size_t old_size, size_t new_size)
|
||||
{
|
||||
dbgprintf("VMObject::inode_size_changed: {%u:%u} %u -> %u\n",
|
||||
m_inode->fsid(), m_inode->index(),
|
||||
old_size, new_size);
|
||||
dbg() << "VMObject::inode_size_changed: {" << m_inode->fsid() << ":" << m_inode->index() << "} " << old_size << " -> " << new_size;
|
||||
|
||||
InterruptDisabler disabler;
|
||||
|
||||
|
|
Loading…
Reference in a new issue