Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4779a0a

Browse files
committed
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!
1 parent 034c2a9 commit 4779a0a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

PC/frozen_dllmain.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ void PyWinFreeze_ExeInit(void)
6464
{
6565
char **modName;
6666
for (modName = possibleModules;*modName;*modName++) {
67-
printf("Initialising '%s'\n", *modName);
67+
/* printf("Initialising '%s'\n", *modName); */
6868
CallModuleDllMain(*modName, DLL_PROCESS_ATTACH);
6969
}
7070
}
@@ -80,7 +80,7 @@ void PyWinFreeze_ExeTerm(void)
8080
for (modName = possibleModules+(sizeof(possibleModules) / sizeof(char *))-2;
8181
modName >= possibleModules;
8282
*modName--) {
83-
printf("Terminating '%s'\n", *modName);
83+
/* printf("Terminating '%s'\n", *modName);*/
8484
CallModuleDllMain(*modName, DLL_PROCESS_DETACH);
8585
}
8686
}

0 commit comments

Comments
 (0)