Re: line duplication using logging to file

2007-01-09 Thread seb
Hi, Thanks for the help. Meanwhile I have written the logging function from scratch and it works without the multiple lines. This means that the multiple line copy is not due to the multiple processes (or thread) trying to access the log file but to something else. Thanks. Sebastien. the new fu

Re: line duplication using logging to file

2007-01-09 Thread Paul McGuire
"seb" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, I am writing to a file some basic information using the logging > module. It is working but in the log file some line are printed > several time. I had put some print debugging messages in the logging > function (so they appe

Re: line duplication using logging to file

2007-01-09 Thread Vinay Sajip
seb wrote: > Hi, I am writing to a file some basic information using the logging > module. It is working but in the log file some line are printed > several time. I had put some print debugging messages in the logging > function (so they appear on the consile) and they are called once only. > Obv