fix for large delays precision + Linux build

This commit is contained in:
psucien 2024-07-11 09:09:37 +02:00 committed by georgemoralis
parent d3e8e95334
commit ba5fb78c5a
2 changed files with 15 additions and 9 deletions

View file

@ -170,7 +170,7 @@ public:
const char* function, std::string message) {
// Propagate important log messages to the profiler
if (IsProfilerConnected()) {
const auto& msg_str = std::format("[{}] {}", GetLogClassName(log_class), message);
const auto& msg_str = fmt::format("[{}] {}", GetLogClassName(log_class), message);
switch (log_level) {
case Level::Warning:
TRACE_WARN(msg_str);