mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 18:07:35 +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
4e8fd0216b
commit
40b8e21115
11 changed files with 54 additions and 54 deletions
|
@ -62,7 +62,7 @@ static Options parse_options(int argc, char* argv[])
|
|||
Core::File::ShouldCloseFileDescriptor::No);
|
||||
ASSERT(success);
|
||||
auto buffer = c_stdin->read_all();
|
||||
dbg() << "Read size " << buffer.size();
|
||||
dbgln("Read size {}", buffer.size());
|
||||
options.data = String((char*)buffer.data(), buffer.size());
|
||||
} else {
|
||||
// Copy the rest of our command-line args.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue