Log: Change success to verbose and move down in ordering

This commit is contained in:
Connor McLaughlin
2020-12-09 01:03:23 +10:00
parent 678146b907
commit 98766a490f
8 changed files with 20 additions and 20 deletions

View File

@ -1297,8 +1297,8 @@ void UpdatePerformanceCounters()
s_last_global_tick_counter = global_tick_counter;
s_fps_timer.Reset();
Log_PerfPrintf("FPS: %.2f VPS: %.2f Average: %.2fms Worst: %.2fms", s_fps, s_vps, s_average_frame_time,
s_worst_frame_time);
Log_VerbosePrintf("FPS: %.2f VPS: %.2f Average: %.2fms Worst: %.2fms", s_fps, s_vps, s_average_frame_time,
s_worst_frame_time);
g_host_interface->OnSystemPerformanceCountersUpdated();
}