[Bf-blender-cvs] [98ac0188ed0] blender2.8: Depsgraph: Fix wrong debug message

Sergey Sharybin noreply at git.blender.org
Thu May 3 12:55:15 CEST 2018


Commit: 98ac0188ed0f2b0a6f7e401b1e769151509eb36a
Author: Sergey Sharybin
Date:   Thu May 3 12:15:37 2018 +0200
Branches: blender2.8
https://developer.blender.org/rB98ac0188ed0f2b0a6f7e401b1e769151509eb36a

Depsgraph: Fix wrong debug message

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

M	source/blender/depsgraph/intern/depsgraph.cc

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

diff --git a/source/blender/depsgraph/intern/depsgraph.cc b/source/blender/depsgraph/intern/depsgraph.cc
index bae798b82f7..f25be922db9 100644
--- a/source/blender/depsgraph/intern/depsgraph.cc
+++ b/source/blender/depsgraph/intern/depsgraph.cc
@@ -733,8 +733,8 @@ void DEG_debug_print_eval_time(struct Depsgraph *depsgraph,
 		return;
 	}
 	fprintf(stdout,
-	        depsgraph_name_for_logging(depsgraph).c_str(),
 	        "%s%s on %s %s(%p)%s at time %f\n",
+	        depsgraph_name_for_logging(depsgraph).c_str(),
 	        function_name,
 	        object_name,
 	        DEG::deg_color_for_pointer(object_address).c_str(),



More information about the Bf-blender-cvs mailing list