On Jun 13, 1:28 am, "James T. Dennis" <[EMAIL PROTECTED]> wrote:
>  This sounds like a job for the Queue class/module to me.
>  Could you create a Queue such that all your worker threads
>  are producers to it and you have one dedicated thread as a
>  consumer that relays log entries from the Queue into your loggers?

Or, use a SocketHandler to serialize the events over a socket, and de-
mux them on the receiving end. The docs have an example:

http://docs.python.org/lib/network-logging.html

Regards,

Vinay Sajip

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

Reply via email to