mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 06:47:34 +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
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…
Add table
Add a link
Reference in a new issue