From f225e23e5b275dd5b3f7b2cc007ab4b559d8a9d9 Mon Sep 17 00:00:00 2001 From: Maximilian Seidler <78690852+PaideiaDilemma@users.noreply.github.com> Date: Sun, 3 Nov 2024 00:42:39 +0100 Subject: [PATCH] misc: make Debug::log flush stdout (#542) Makes it a lot easier to spot a failed RASSERT --- src/helpers/Log.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/Log.hpp b/src/helpers/Log.hpp index ebf8c4d..357f4f5 100644 --- a/src/helpers/Log.hpp +++ b/src/helpers/Log.hpp @@ -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; } }; \ No newline at end of file