mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 00:50:22 +00:00
AK: Completely disable rich debug formats on Windows
Half the functions used are not readily available on windows, instead of creating more ifdef soup, this commit simply disables the rich debug stuff on windows.
This commit is contained in:
parent
6723552e95
commit
64616d3997
Notes:
sideshowbarker
2024-07-17 07:08:37 +09:00
Author: https://github.com/alimpfard Commit: https://github.com/SerenityOS/serenity/commit/64616d3997 Pull-request: https://github.com/SerenityOS/serenity/pull/22388
1 changed files with 1 additions and 1 deletions
|
@ -1209,7 +1209,7 @@ void vdbg(StringView fmtstr, TypeErasedFormatParams& params, bool newline)
|
|||
} else {
|
||||
builder.appendff("\033[34;1m[Kernel]\033[0m: ");
|
||||
}
|
||||
#else
|
||||
#elif !defined(AK_OS_WINDOWS)
|
||||
auto process_name = process_name_for_logging();
|
||||
if (!process_name.is_empty()) {
|
||||
struct timespec ts = {};
|
||||
|
|
Loading…
Reference in a new issue