Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/headless/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ static bool run_headless(fs::path const& root, memory::vector<memory::string>& 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, //
Expand Down
Loading