1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 17:44:58 +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:
asynts 2021-01-10 14:39:20 +01:00 committed by Andreas Kling
parent 11d651d447
commit 872f2a3b90
8 changed files with 16 additions and 15 deletions

View file

@ -315,7 +315,7 @@ void BlockBasedFS::flush_writes_impl()
++count;
});
cache().mark_all_clean();
dbg() << class_name() << ": Flushed " << count << " blocks to disk";
dbgln("{}: Flushed {} blocks to disk", class_name(), count);
}
void BlockBasedFS::flush_writes()