mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 01:27:34 +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
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