mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-12 20:42:21 +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.
This commit is contained in:
parent
3f23a58fa1
commit
24888457d5
Notes:
sideshowbarker
2024-07-18 22:58:20 +09:00
Author: https://github.com/asynts
Commit: 24888457d5
Pull-request: https://github.com/SerenityOS/serenity/pull/5012
Reviewed-by: https://github.com/alimpfard
9 changed files with 117 additions and 98 deletions
|
@ -39,7 +39,7 @@ void Client::drain_socket()
|
|||
while (m_socket->can_read()) {
|
||||
auto buf = m_socket->read(1024);
|
||||
|
||||
dbg() << "Read " << buf.size() << " bytes: " << buf;
|
||||
dbgln("Read {} bytes.", buf.size());
|
||||
|
||||
if (m_socket->eof()) {
|
||||
quit();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue