mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-05 06:32:30 +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
@@ -38,7 +38,7 @@ RefPtr<ImageData> ImageData::create_with_size(JS::GlobalObject& global_object, i
|
||||
if (width > 16384 || height > 16384)
|
||||
return nullptr;
|
||||
|
||||
dbg() << "Creating ImageData with " << width << "x" << height;
|
||||
dbgln("Creating ImageData with {}x{}", width, height);
|
||||
|
||||
auto* data = JS::Uint8ClampedArray::create(global_object, width * height * 4);
|
||||
if (!data)
|
||||
|
||||
Reference in New Issue
Block a user