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/blenkernel/intern/nla.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/blenkernel/intern/nla.c') diff --git a/source/blender/blenkernel/intern/nla.c b/source/blender/blenkernel/intern/nla.c index 9c8bda97435..56fec119cce 100644 --- a/source/blender/blenkernel/intern/nla.c +++ b/source/blender/blenkernel/intern/nla.c @@ -1484,7 +1484,7 @@ void BKE_nla_action_pushdown (AnimData *adt) */ // TODO: what about modifiers? if (action_has_motion(adt->action) == 0) { - printf("BKE_nla_action_pushdown(): action has no data \n"); + printf("BKE_nla_action_pushdown(): action has no data\n"); return; } @@ -1576,9 +1576,9 @@ short BKE_nla_tweakmode_enter (AnimData *adt) } if (ELEM3(NULL, activeTrack, activeStrip, activeStrip->act)) { - if (G.f & G_DEBUG) { - printf("NLA tweakmode enter - neither active requirement found \n"); - printf("\tactiveTrack = %p, activeStrip = %p \n", (void *)activeTrack, (void *)activeStrip); + if (G.debug & G_DEBUG) { + printf("NLA tweakmode enter - neither active requirement found\n"); + printf("\tactiveTrack = %p, activeStrip = %p\n", (void *)activeTrack, (void *)activeStrip); } return 0; } -- cgit v1.2.3