Ladybird: Enable rich debug messages on all processes

Android is excluded from this patch because the Android dbgln routes
messages to the NDK logger, which already includes process and time
information.
This commit is contained in:
Andrew Kaster 2023-12-11 11:19:41 -07:00 committed by Andrew Kaster
commit 57a04c536c
Notes: sideshowbarker 2024-07-17 01:53:23 +09:00
9 changed files with 18 additions and 0 deletions

View file

@ -50,6 +50,8 @@ static ErrorOr<void> initialize_lagom_networking();
ErrorOr<int> serenity_main(Main::Arguments arguments)
{
AK::set_rich_debug_enabled(true);
#if defined(HAVE_QT)
QCoreApplication app(arguments.argc, arguments.argv);