misc: make Debug::log flush stdout (#542)

Makes it a lot easier to spot a failed RASSERT
This commit is contained in:
Maximilian Seidler 2024-11-03 00:42:39 +01:00 committed by GitHub
parent edbecc8708
commit f225e23e5b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -52,6 +52,6 @@ namespace Debug {
std::cout << "] ";
}
std::cout << std::vformat(fmt, std::make_format_args(args...)) << "\n";
std::cout << std::vformat(fmt, std::make_format_args(args...)) << std::endl;
}
};