[Bf-blender-cvs] [42028f77456] cycles-x: Cycles X: Correct verbosity level of logging

Sergey Sharybin noreply at git.blender.org
Tue Jul 13 12:57:57 CEST 2021


Commit: 42028f7745692821e65bdbc40fd05f6c60df764c
Author: Sergey Sharybin
Date:   Tue Jul 13 12:57:05 2021 +0200
Branches: cycles-x
https://developer.blender.org/rB42028f7745692821e65bdbc40fd05f6c60df764c

Cycles X: Correct verbosity level of logging

Hared to notice since there was a verbosity check above.

Seems to actually be a missing change since the initial review :(

===================================================================

M	intern/cycles/integrator/path_trace.cpp

===================================================================

diff --git a/intern/cycles/integrator/path_trace.cpp b/intern/cycles/integrator/path_trace.cpp
index 1b170cdf567..10141c6c6e8 100644
--- a/intern/cycles/integrator/path_trace.cpp
+++ b/intern/cycles/integrator/path_trace.cpp
@@ -558,8 +558,8 @@ void PathTrace::rebalance(const RenderWork &render_work)
   if (VLOG_IS_ON(kLogLevel)) {
     VLOG(kLogLevel) << "Calculated per-device weights for works:";
     for (int i = 0; i < num_works; ++i) {
-      LOG(INFO) << path_trace_works_[i]->get_device()->info.description << ": "
-                << work_balance_infos_[i].weight;
+      VLOG(kLogLevel) << path_trace_works_[i]->get_device()->info.description << ": "
+                      << work_balance_infos_[i].weight;
     }
   }



More information about the Bf-blender-cvs mailing list