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 15:43:09 +01:00 committed by Andreas Kling
commit 5931758dbc
Notes: sideshowbarker 2024-07-18 23:56:40 +09:00
7 changed files with 20 additions and 20 deletions

View file

@ -49,7 +49,7 @@ LoopbackAdapter::~LoopbackAdapter()
void LoopbackAdapter::send_raw(ReadonlyBytes payload)
{
dbg() << "LoopbackAdapter: Sending " << payload.size() << " byte(s) to myself.";
dbgln("LoopbackAdapter: Sending {} byte(s) to myself.", payload.size());
did_receive(payload);
}