From ead12e4307ea9a3f77e3fddb77bcdfa71ae198a2 Mon Sep 17 00:00:00 2001 From: wvpm <24685035+wvpm@users.noreply.github.com> Date: Fri, 15 May 2026 01:39:25 +0200 Subject: [PATCH] Change SPDLOG_INFO to spdlog::info for output in release builds --- src/headless/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/headless/main.cpp b/src/headless/main.cpp index 1c1114576..8122eba76 100644 --- a/src/headless/main.cpp +++ b/src/headless/main.cpp @@ -348,7 +348,7 @@ static bool run_headless(fs::path const& root, memory::vector& m if (ticks_passed != 0 && duration != test_duration_t::zero()) { const test_duration_t tick_tps = total_tick_duration / ticks_passed; const test_duration_t total_tps = duration / ticks_passed; - SPDLOG_INFO( + spdlog::info( "Ran {} / {} ticks, total time {} at {} per tick, tick time only {} at {} per tick. " "Tick lengths ranged from {} to {}.", ticks_passed, TICK_COUNT, duration, total_tps, total_tick_duration, tick_tps, //