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/ocean.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'source/blender/blenkernel/intern/ocean.c') diff --git a/source/blender/blenkernel/intern/ocean.c b/source/blender/blenkernel/intern/ocean.c index ae13613fc14..907de7888cb 100644 --- a/source/blender/blenkernel/intern/ocean.c +++ b/source/blender/blenkernel/intern/ocean.c @@ -1173,18 +1173,18 @@ void BKE_simulate_ocean_cache(struct OceanCache *och, int frame) cache_filename(string, och->bakepath, och->relbase, frame, CACHE_TYPE_DISPLACE); och->ibufs_disp[f] = IMB_loadiffname(string, 0); - //if (och->ibufs_disp[f] == NULL) printf("error loading %s \n", string); - //else printf("loaded cache %s \n", string); + //if (och->ibufs_disp[f] == NULL) printf("error loading %s\n", string); + //else printf("loaded cache %s\n", string); cache_filename(string, och->bakepath, och->relbase, frame, CACHE_TYPE_FOAM); och->ibufs_foam[f] = IMB_loadiffname(string, 0); - //if (och->ibufs_foam[f] == NULL) printf("error loading %s \n", string); - //else printf("loaded cache %s \n", string); + //if (och->ibufs_foam[f] == NULL) printf("error loading %s\n", string); + //else printf("loaded cache %s\n", string); cache_filename(string, och->bakepath, och->relbase, frame, CACHE_TYPE_NORMAL); och->ibufs_norm[f] = IMB_loadiffname(string, 0); - //if (och->ibufs_norm[f] == NULL) printf("error loading %s \n", string); - //else printf("loaded cache %s \n", string); + //if (och->ibufs_norm[f] == NULL) printf("error loading %s\n", string); + //else printf("loaded cache %s\n", string); } -- cgit v1.2.3