mirror of
https://github.com/RGBCube/serenity
synced 2025-05-22 19:45:08 +00:00
LibWeb: Convert a bunch of dbg() to dbgln()
This commit is contained in:
parent
4714b04d32
commit
0a3b834346
12 changed files with 31 additions and 38 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue