Re: Logging from multiple processes

2012-02-16 Thread Alexey Luchko
Hi! We are using TimedRotatingFileHandler with overridden stream with a class that opens log file for append on every write. -- Regards, Alex. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@go

Re: Logging from multiple processes

2012-02-16 Thread JC
On Feb 15, 7:57 am, bruno desthuilliers wrote: > On Feb 14, 6:23 pm, JC wrote: > > > Hey guys, > > > Does Django 1.3.1 handle logging from multiple processes or I have to > > have some special consideration? > > Not really a django-specific problem - the pro

Re: Logging from multiple processes

2012-02-15 Thread bruno desthuilliers
On Feb 14, 6:23 pm, JC wrote: > Hey guys, > > Does Django 1.3.1 handle logging from multiple processes or I have to > have some special consideration? Not really a django-specific problem - the problem exists as soon as you have concurrent write access on a same file. The solution

Logging from multiple processes

2012-02-14 Thread JC
Hey guys, Does Django 1.3.1 handle logging from multiple processes or I have to have some special consideration? This document may be related: https://code.djangoproject.com/wiki/LoggingProposal but its two years old so I was wondering maybe Django now supports this? Thanks! JC -- You