logging to a text widget

2006-03-02 Thread Alexandre Guimond
Hi. I'm using the logging package. I would like to send my log messages
to a Text widget creating using Tkinter. I was wondering if there was a
logging handler class that would do this. It seems that the standard
handlers do not support this. Has anyone tried to do this?

Thx for any help,

alex

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: logging to a text widget

2006-03-02 Thread Martin Franklin
Alexandre Guimond wrote:
 Hi. I'm using the logging package. I would like to send my log messages
 to a Text widget creating using Tkinter. I was wondering if there was a
 logging handler class that would do this. It seems that the standard
 handlers do not support this. Has anyone tried to do this?
 

Alex,

To be honest I haven't used the logging package (it's on my todo list ;)
but I normally sub class the Text widget, give it a write method then
send stdout / stderr to it normally (sys.stdout = mytextWidget)

At the same time I also add scrollbars and in the write method I scroll 
to the latest message.

Cheers
Martin
-- 
http://mail.python.org/mailman/listinfo/python-list