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/scene/svm.cpp
parent806521f7037a5a50bba9d332ab5de3b0172c5a22 (diff)
Fix Cycles logging some excessive detail with default --debug-cycles
Diffstat (limited to 'intern/cycles/scene/svm.cpp')
-rw-r--r--intern/cycles/scene/svm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/scene/svm.cpp b/intern/cycles/scene/svm.cpp
index 6da0df302ad..d121765bbdd 100644
--- a/intern/cycles/scene/svm.cpp
+++ b/intern/cycles/scene/svm.cpp
@@ -64,7 +64,7 @@ void SVMShaderManager::device_update_shader(Scene *scene,
compiler.background = (shader == scene->background->get_shader(scene));
compiler.compile(shader, *svm_nodes, 0, &summary);
- VLOG(2) << "Compilation summary:\n"
+ VLOG(3) << "Compilation summary:\n"
<< "Shader name: " << shader->name << "\n"
<< summary.full_report();
}