Re: Logging and threading

2006-04-01 Thread usenet
As simple and as obvious as I expected, thanks Dennis. -Alex -- http://mail.python.org/mailman/listinfo/python-list

Logging and threading

2006-03-31 Thread usenet
I'm having some problems getting the logging module to work with the threading module. I've narrowed the problem down to the following code: import logging, threading update_log = logging.getLogger('update_log') update_log.addHandler(logging.FileHandler("/tmp/update_log")) class dlThread(thread