Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brecht@blender.org>2021-10-31 15:30:56 +0300
committerBrecht Van Lommel <brecht@blender.org>2021-11-01 10:36:50 +0300
commit6bc54cddfbf78fd880d5183e8949f19236ad0aaa (patch)
tree4d0bc3a20537a548165f4bb3c91ab6e9476b5115 /intern/cycles/blender/sync.cpp
parent806521f7037a5a50bba9d332ab5de3b0172c5a22 (diff)
Fix Cycles logging some excessive detail with default --debug-cycles
Diffstat (limited to 'intern/cycles/blender/sync.cpp')
-rw-r--r--intern/cycles/blender/sync.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/intern/cycles/blender/sync.cpp b/intern/cycles/blender/sync.cpp
index e0a13625962..cf0b77a9b16 100644
--- a/intern/cycles/blender/sync.cpp
+++ b/intern/cycles/blender/sync.cpp
@@ -366,7 +366,9 @@ void BlenderSync::sync_integrator(BL::ViewLayer &b_view_layer, bool background)
if ((preview && !preview_scrambling_distance) || use_adaptive_sampling)
scrambling_distance = 1.0f;
- VLOG(1) << "Used Scrambling Distance: " << scrambling_distance;
+ if (scrambling_distance != 1.0f) {
+ VLOG(3) << "Using scrambling distance: " << scrambling_distance;
+ }
integrator->set_scrambling_distance(scrambling_distance);
if (get_boolean(cscene, "use_fast_gi")) {