1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 17:47:44 +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:
asynts 2021-01-09 15:09:40 +01:00 committed by Andreas Kling
parent 4e8fd0216b
commit 40b8e21115
11 changed files with 54 additions and 54 deletions

View file

@ -244,7 +244,7 @@ int main(int argc, char** argv)
download->on_headers_received = [&](auto& response_headers, auto status_code) {
if (received_actual_headers)
return;
dbg() << "Received headers! response code = " << status_code.value_or(0);
dbgln("Received headers! response code = {}", status_code.value_or(0));
received_actual_headers = true; // And not trailers!
String output_name;
if (auto content_disposition = response_headers.get("Content-Disposition"); content_disposition.has_value()) {