Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2010-01-17 01:53:05 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-01-17 01:53:05 +0300
commit8c74944a8e6e21cca35a2f610360e1e2a1418b76 (patch)
tree4893f26cdf949b169dc0da5ceca29901c45c5297 /source/blender/blenloader
parent23607fc91fcf203ce87d5f53fef79e3eea0049c2 (diff)
debug prints are too much on my system it hangs ddd.
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/readfile.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 6bf347e9bd5..3bb94ecf169 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -10691,7 +10691,8 @@ static void expand_doit(FileData *fd, Main *mainvar, void *old)
if(id==NULL) {
read_libblock(fd, ptr, bhead, LIB_READ+LIB_INDIRECT, NULL);
- if(G.f & G_DEBUG) printf("expand_doit: other lib %s\n", lib->name);
+ // commented because this can print way too much
+ // if(G.f & G_DEBUG) printf("expand_doit: other lib %s\n", lib->name);
/* for outliner dependency only */
ptr->curlib->parent= mainvar->curlib;
@@ -10706,7 +10707,8 @@ static void expand_doit(FileData *fd, Main *mainvar, void *old)
/*oldnewmap_insert(fd->libmap, bhead->old, id, 1);*/
change_idid_adr_fd(fd, bhead->old, id);
- if(G.f & G_DEBUG) printf("expand_doit: already linked: %s lib: %s\n", id->name, lib->name);
+ // commented because this can print way too much
+ // if(G.f & G_DEBUG) printf("expand_doit: already linked: %s lib: %s\n", id->name, lib->name);
}
MEM_freeN(lib);