WHAT USE YOU?
It is well known that with multiprocess deployment can be parts of the
log overwritten by other processes. [1] The conclusion there is "(any
recommendation) requires building consensus on the Django Developers
mailing list."
A problem is if we ask here for any not easy reproducible problem:
"Have you seen any (bla bla) message in the log?" and the answer is
"No one." The most people probably did not changed logging and only
added File Rotating. Has not been the only existing such message
overwritten?
I personally use an imperfect very simple short solution. (adding
process number to the filename - which should not be recommended)
There should be other solutions. I googled something [2] [3] but I am
not prepared to recommend anything to all.
[1] https://code.djangoproject.com/ticket/14625
[2] http://readthedocs.org/docs/django-logstream/
[3] http://fairviewcomputing.com/blog/2008/03/05/django-request-logging/
--
You received this message because you are subscribed to the Google Groups "Satchmo users" group.
To post to this group, send email to satchm...@googlegroups.com.
To unsubscribe from this group, send email to satchmo-user...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/satchmo-users?hl=en.
logging.basicConfig(level=logging.DEBUG,... )
+logging.getLogger('django.db.backends').setLevel(logging.INFO)
logging.getLogger('keyedcache').setLevel(logging.INFO)
For new installations I wrote a patch.