From 5b88712ff932fcbcd0bb0fb257e8e9c2e247a82a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 31 Mar 2012 00:59:17 +0000 Subject: move debug flag into its own global var (G.debug), split up debug options. --debug --debug-ffmpeg --debug-python --debug-events --debug-wm This makes debug output easier to read - event debug prints would flood output too much before. For convenience: --debug-all turns all debug flags on (works as --debug did before). also removed some redundant whitespace in debug prints and prefix some prints with __func__ to give some context. --- source/blender/editors/object/object_relations.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/editors/object/object_relations.c') diff --git a/source/blender/editors/object/object_relations.c b/source/blender/editors/object/object_relations.c index a6fb946c83f..57d0de522a1 100644 --- a/source/blender/editors/object/object_relations.c +++ b/source/blender/editors/object/object_relations.c @@ -1504,8 +1504,8 @@ static void single_obdata_users(Main *bmain, Scene *scene, int flag) ob->data= copy_speaker(ob->data); break; default: - if (G.f & G_DEBUG) - printf("ERROR single_obdata_users: can't copy %s\n", id->name); + if (G.debug & G_DEBUG) + printf("ERROR %s: can't copy %s\n", __func__, id->name); return; } -- cgit v1.2.3