1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:28:12 +00:00

CPU: Use dbg() instead of dbgprintf()

This commit is contained in:
Liav A 2020-02-24 19:03:18 +02:00 committed by Andreas Kling
parent 9e520fd0d6
commit b41e2d25b4
2 changed files with 5 additions and 13 deletions

View file

@ -526,7 +526,7 @@ public:
SplitQword end;
read_tsc(end.lsw, end.msw);
uint64_t diff = end.qw - m_start.qw;
dbgprintf("Stopwatch(%s): %Q ticks\n", m_name, diff);
dbg() << "Stopwatch(" << m_name << "): " << diff << " ticks";
}
private: