[Bf-blender-cvs] [3018a55] depsgraph_refactor: Depsgraph: Make error print a bit more verbose

Sergey Sharybin noreply at git.blender.org
Wed Feb 25 10:56:50 CET 2015


Commit: 3018a559ebe66da53cac1a59a7145034439eb792
Author: Sergey Sharybin
Date:   Wed Feb 25 14:44:44 2015 +0500
Branches: depsgraph_refactor
https://developer.blender.org/rB3018a559ebe66da53cac1a59a7145034439eb792

Depsgraph: Make error print a bit more verbose

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

M	source/blender/depsgraph/intern/depsgraph_build.cpp

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

diff --git a/source/blender/depsgraph/intern/depsgraph_build.cpp b/source/blender/depsgraph/intern/depsgraph_build.cpp
index c22034d..995724f 100644
--- a/source/blender/depsgraph/intern/depsgraph_build.cpp
+++ b/source/blender/depsgraph/intern/depsgraph_build.cpp
@@ -336,7 +336,7 @@ ComponentDepsNode *DepsgraphRelationBuilder::find_node(const ComponentKey &key)
 {
 	IDDepsNode *id_node = m_graph->find_id_node(key.id);
 	if (!id_node) {
-		fprintf(stderr, "find_node component: Could not find ID\n");
+		fprintf(stderr, "find_node component: Could not find ID %s\n", key.id->name);
 		return NULL;
 	}




More information about the Bf-blender-cvs mailing list