py2exe uses __init__ for class names when logging

Thomas Heller theller at python.net
Tue Sep 6 15:49:38 EDT 2005


flupke <flupke at nonexistingdomain.com> writes:

> Hi,
>
> when i run my program and use the logging component, i see this:
>
> 2005-09-02 17:07:48,193 INFO windowmain 97 Main window created
> 2005-09-02 17:07:49,020 DEBUG windowmain 103 Frame <wx._windows.Frame;
> proxy of C++ wxFrame instance at _b8dd9401_p_wxFrame>
> 2005-09-02 17:07:49,145 INFO firebird 195 Starting up the database
>
> However when i run py2exe on my app and run it then i don't see the
> file name anymore. Instead it says __init__:
>
> 2005-09-06 16:01:17,098 INFO __init__ 1032 Main window created
> 2005-09-06 16:01:17,615 DEBUG __init__ 1032 Frame <wx._windows.Frame;
> proxy of C++ wxFrame instance at _d8057f01_p_wxFrame>
> 2005-09-06 16:01:17,677 INFO __init__ 1032 Starting up the database
>
> Any ideas on how to solve this?

This has been discussed on the py2exe-users lists, and a fix was found
by David Hess.  Fortunately he added it to the wiki:

http://starship.python.net/crew/theller/moin.cgi/LoggingModule

Thomas



More information about the Python-list mailing list