Skip to content

Commit

Permalink
misc: make Debug::log flush stdout (#542)
Browse files Browse the repository at this point in the history
Makes it a lot easier to spot a failed RASSERT
  • Loading branch information
PaideiaDilemma authored Nov 2, 2024
1 parent edbecc8 commit f225e23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers/Log.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
};

0 comments on commit f225e23

Please sign in to comment.