mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-05 06:32:30 +02: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:
Notes:
sideshowbarker
2024-07-18 22:58:25 +09:00
Author: https://github.com/asynts Commit: https://github.com/SerenityOS/serenity/commit/3f23a58fa1a Pull-request: https://github.com/SerenityOS/serenity/pull/5012 Reviewed-by: https://github.com/alimpfard
@@ -24,6 +24,7 @@
|
||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <AK/Debug.h>
|
||||
#include <AK/StringBuilder.h>
|
||||
#include <LibGfx/Painter.h>
|
||||
#include <LibGfx/Path.h>
|
||||
@@ -33,8 +34,6 @@
|
||||
#include <LibWeb/SVG/SVGPathElement.h>
|
||||
#include <ctype.h>
|
||||
|
||||
//#define PATH_DEBUG
|
||||
|
||||
namespace Web::SVG {
|
||||
|
||||
#ifdef PATH_DEBUG
|
||||
@@ -136,7 +135,7 @@ void PathDataParser::parse_drawto()
|
||||
} else if (match('A') || match('a')) {
|
||||
parse_elliptical_arc();
|
||||
} else {
|
||||
dbg() << "PathDataParser::parse_drawto failed to match: '" << ch() << "'";
|
||||
dbgln("PathDataParser::parse_drawto failed to match: '{}'", ch());
|
||||
TODO();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user