I was looking into the logging code and I found that trac doesn't do much customization; just a standard python logging object. That should work fine in some cases, since the Python logging object is thread-safe. However it's not fully concurrency-safe for multiple processes, and we use Trac through mod_python, meaning there are always at least two apache processes running at any one time. The trac log is env specific, but the environment isn't linked to a specific apache process, so it sounds like it's possible to lose log events. Is there something I'm missing (e.g. special handling in mod_python) that prevents this?
--Gordon -- You received this message because you are subscribed to the Google Groups "Trac Development" 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/trac-dev?hl=en.
