mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:38:11 +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
4953c73fc1
commit
01879d27c2
12 changed files with 33 additions and 23 deletions
|
@ -992,7 +992,7 @@ bool Widget::load_from_json(const JsonObject& json, RefPtr<Widget> (*unregistere
|
|||
} else if (class_name.to_string() == "GUI::HorizontalBoxLayout") {
|
||||
set_layout<GUI::HorizontalBoxLayout>();
|
||||
} else {
|
||||
dbg() << "Unknown layout class: '" << class_name.to_string() << "'";
|
||||
dbgln("Unknown layout class: '{}'", class_name.to_string());
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue