mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-30 11:37:16 +02:00
LibWeb: Convert a bunch of dbg() to dbgln()
This commit is contained in:
Notes:
sideshowbarker
2024-07-19 00:00:24 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/0a3b8343461
@@ -130,7 +130,7 @@ void HTMLScriptElement::prepare_script(Badge<HTMLDocumentParser>)
|
||||
url,
|
||||
[this, url](auto data, auto&) {
|
||||
if (data.is_null()) {
|
||||
dbg() << "HTMLScriptElement: Failed to load " << url;
|
||||
dbgln("HTMLScriptElement: Failed to load {}", url);
|
||||
return;
|
||||
}
|
||||
m_script_source = String::copy(data);
|
||||
|
||||
Reference in New Issue
Block a user