Fix broken Cycles performance benchmark after recent logging changes

Ensure full render report is printed with default verbosity.
This commit is contained in:
Brecht Van Lommel 2022-06-30 19:41:42 +02:00
parent c9795102c2
commit fbcc00d10d
1 changed files with 3 additions and 3 deletions

View File

@ -146,11 +146,11 @@ void Session::run_main_render_loop()
RenderWork render_work = run_update_for_next_iteration();
if (!render_work) {
if (VLOG_WORK_IS_ON) {
if (VLOG_INFO_IS_ON) {
double total_time, render_time;
progress.get_time(total_time, render_time);
VLOG_WORK << "Rendering in main loop is done in " << render_time << " seconds.";
VLOG_WORK << path_trace_->full_report();
VLOG_INFO << "Rendering in main loop is done in " << render_time << " seconds.";
VLOG_INFO << path_trace_->full_report();
}
if (params.background) {