On Mon, 2007-03-26 at 19:57 -0500, Greg Donald wrote: > On 3/26/07, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > > If you want to capture every query automatically like this, you can edit > > django/db/backends/util.py and put the logging to file in place inside > > the CursorDebugWrapper.execute() method -- where it is currently > > appending to self.db.queries. > > Thanks. I'm amazed this isn't already a feature.
That's because it's a really bad idea to do this. You will get dozens or hundreds of queries with very little way to tell which thread or process is doing the logging. Since all the requests will be interleaved, this will be even harder to track. Serialisation is also a problem: only one thread or process at a time can write to the file, so now each simultaneous request has to wait in line to get a lock in order to access to a single shared resource. Performance would plummet. Regards, Malcolm --~--~---------~--~----~------------~-------~--~----~ 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@googlegroups.com 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 -~----------~----~----~----~------~----~------~--~---