mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 06:18:14 +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
510030971b
commit
a410bb8fd5
7 changed files with 28 additions and 29 deletions
|
@ -75,7 +75,7 @@ bool Socket::connect(const String& hostname, int port)
|
|||
{
|
||||
auto* hostent = gethostbyname(hostname.characters());
|
||||
if (!hostent) {
|
||||
dbg() << "Socket::connect: Unable to resolve '" << hostname << "'";
|
||||
dbgln("Socket::connect: Unable to resolve '{}'", hostname);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue