diff --git a/Userland/DevTools/UserspaceEmulator/Report.h b/Userland/DevTools/UserspaceEmulator/Report.h index 97dcf97537..96face8914 100644 --- a/Userland/DevTools/UserspaceEmulator/Report.h +++ b/Userland/DevTools/UserspaceEmulator/Report.h @@ -34,7 +34,7 @@ template void reportln(const StringView& format, Ts... args) { if (g_report_to_debug) - dbgln(format, args...); + AK::vdbgln(format, AK::VariadicFormatParams { args... }); else warnln(format, args...); }