On Fri, Mar 4, 2011 at 7:17 AM, neurino <[email protected]> wrote: > Thanks Edgar, > I'll give custom templates a look! > I triple checked my production.ini and also tried a lot of changes, I report > it below as it is now (only the logging part), no queries are logged. > The only SA log messages present are tables creation doing setup-app. > I read somewhere, maybe here on group but can't find it again, that > sqlalchemy has a particular handling of logs to avoid multiplication of > function calls that gives problems with Apache but I'm not sure since I did > not understand if problem was related with mine.
You may be thinking of the double-logging problem. If you set 'engine.echo = True', it will create another logger, so that if you mix that with fileConfig logging, you'll get double output. -- Mike Orr <[email protected]> -- You received this message because you are subscribed to the Google Groups "pylons-discuss" 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/pylons-discuss?hl=en.
