mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-26 14:28:49 +00:00
LibWeb: Convert a bunch of dbg() to dbgln()
This commit is contained in:
parent
4714b04d32
commit
0a3b834346
Notes:
sideshowbarker
2024-07-19 00:00:24 +09:00
Author: https://github.com/awesomekling
Commit: 0a3b834346
12 changed files with 31 additions and 38 deletions
|
@ -46,7 +46,7 @@ HTMLImageElement::HTMLImageElement(DOM::Document& document, const QualifiedName&
|
|||
};
|
||||
|
||||
m_image_loader.on_fail = [this] {
|
||||
dbg() << "HTMLImageElement: Resource did fail: " << this->src();
|
||||
dbgln("HTMLImageElement: Resource did fail: {}", src());
|
||||
this->document().update_layout();
|
||||
dispatch_event(DOM::Event::create(EventNames::error));
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue