From: Mark Hammond Date: Thu, 5 Oct 2000 22:10:33 +0000 (+0000) Subject: Remove some debugging messages - although this code is a complete hack, we dont need... X-Git-Tag: v2.0c1~96 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4779a0a6fd444d594f1cbb992c636d66f59a5d1d;p=python Remove some debugging messages - although this code is a complete hack, we dont need to announce it to the world every time they use freeze! --- diff --git a/PC/frozen_dllmain.c b/PC/frozen_dllmain.c index 0873d8f573..fbb4713879 100644 --- a/PC/frozen_dllmain.c +++ b/PC/frozen_dllmain.c @@ -64,7 +64,7 @@ void PyWinFreeze_ExeInit(void) { char **modName; for (modName = possibleModules;*modName;*modName++) { - printf("Initialising '%s'\n", *modName); +/* printf("Initialising '%s'\n", *modName); */ CallModuleDllMain(*modName, DLL_PROCESS_ATTACH); } } @@ -80,7 +80,7 @@ void PyWinFreeze_ExeTerm(void) for (modName = possibleModules+(sizeof(possibleModules) / sizeof(char *))-2; modName >= possibleModules; *modName--) { - printf("Terminating '%s'\n", *modName); +/* printf("Terminating '%s'\n", *modName);*/ CallModuleDllMain(*modName, DLL_PROCESS_DETACH); } }