py2exe uses __init__ for class names when logging

F

flupke

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?

Thanks,
Benedict
 
T

Thomas Heller

flupke said:
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,264
Messages
2,571,315
Members
48,000
Latest member
SusannahSt

Latest Threads

Top