LoopbackAdapter: Use dbg() instead of dbgprintf()

This commit is contained in:
Liav A 2020-02-24 14:42:15 +02:00 committed by Andreas Kling
commit b7b2fb083d
Notes: sideshowbarker 2024-07-19 09:01:59 +09:00

View file

@ -49,7 +49,7 @@ LoopbackAdapter::~LoopbackAdapter()
void LoopbackAdapter::send_raw(const u8* data, size_t size)
{
dbgprintf("LoopbackAdapter: Sending %d byte(s) to myself.\n", size);
dbg() << "LoopbackAdapter: Sending " << size << " byte(s) to myself.";
did_receive(data, size);
}