1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 08:27: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:
asynts 2021-01-12 14:11:44 +01:00 committed by Andreas Kling
parent 6b7602d33b
commit adbb8d62d1
6 changed files with 18 additions and 18 deletions

View file

@ -492,7 +492,7 @@ static void set_property_expanding_shorthands(StyleProperties& style, CSS::Prope
}
return;
}
dbg() << "Unsure what to do with CSS margin value '" << value.to_string() << "'";
dbgln("Unsure what to do with CSS margin value '{}'", value.to_string());
return;
}
return;
@ -544,7 +544,7 @@ static void set_property_expanding_shorthands(StyleProperties& style, CSS::Prope
}
return;
}
dbg() << "Unsure what to do with CSS padding value '" << value.to_string() << "'";
dbgln("Unsure what to do with CSS padding value '{}'", value.to_string());
return;
}
return;