mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-13 13:02:28 +00:00
UserspaceEmulator: Use vdbgln() instead of dbgln() when reporting
This will avoid conflict with the upcoming compiletime checks.
This commit is contained in:
parent
f0d85acc94
commit
b68e34cc2e
Notes:
sideshowbarker
2024-07-18 22:30:27 +09:00
Author: https://github.com/alimpfard
Commit: b68e34cc2e
Pull-request: https://github.com/SerenityOS/serenity/pull/4986
Reviewed-by: https://github.com/BenWiederhake
Reviewed-by: https://github.com/asynts
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ template<typename... Ts>
|
||||||
void reportln(const StringView& format, Ts... args)
|
void reportln(const StringView& format, Ts... args)
|
||||||
{
|
{
|
||||||
if (g_report_to_debug)
|
if (g_report_to_debug)
|
||||||
dbgln(format, args...);
|
AK::vdbgln(format, AK::VariadicFormatParams { args... });
|
||||||
else
|
else
|
||||||
warnln(format, args...);
|
warnln(format, args...);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue