On Feb 14, 6:23 pm, JC <[email protected]> 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 is of course to NOT log to a file. > This document may be > related:https://code.djangoproject.com/wiki/LoggingProposalbut its two years > old so I was wondering maybe Django now supports this? https://docs.djangoproject.com/en/1.3/topics/logging/ IOW : learn to use the standard python logging module. If you're using mod_wsgi the simplest thing is to use a streamhandler on sys.stderr and let apache do the dirty work. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

