Am 14.07.2011 01:30 schrieb Tim Black:
I followed http://www.turbogears.org/2.1/docs/main/MultipleDatabases.html and set up my app to use two databases. Now when I run paster serve --reload development.ini, SQLAlchemy outputs a lot of SQL to the terminal. How can I disable that SQL output so I can more easily find tracebacks, links to debug pages for failed AJAX calls, etc.?
In your development.ini, dod you change your settings sqlalchemy.echo = false sqlalchemy.echo_pool = false to something like this? sqlalchemy.first.echo = false sqlalchemy.first.echo_pool = false sqlalchemy.second.echo = false sqlalchemy.second.echo_pool = false -- Christoph -- You received this message because you are subscribed to the Google Groups "TurboGears" 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/turbogears?hl=en.

