mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 20:29:18 +00:00
LoopbackAdapter: Use dbg() instead of dbgprintf()
This commit is contained in:
parent
d6ae2cf46a
commit
b7b2fb083d
Notes:
sideshowbarker
2024-07-19 09:01:59 +09:00
Author: https://github.com/supercomputer7
Commit: b7b2fb083d
Pull-request: https://github.com/SerenityOS/serenity/pull/1290
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ LoopbackAdapter::~LoopbackAdapter()
|
||||||
|
|
||||||
void LoopbackAdapter::send_raw(const u8* data, size_t size)
|
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);
|
did_receive(data, size);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue