The above statements are correct. 'sqlalchemy.engine' specifically targets the SQL statements emitted.
There is also "echo=True" on create_engine() which is a shortcut for the "sqlalchemy.engine" statement above.
A description of logging as applied to SQLAlchemy is at http://www.sqlalchemy.org/docs/core/engines.html#configuring-logging .
Note that when using logging, the context of the application may suppress standard output. The test harness "nose" does so unless the -s flag is used, and a daemonizing server like paster server also shuts off standard output. You may need to route the logging to a file instead in a case like the latter.
> --
> You received this message because you are subscribed to the Google Groups "sqlalchemy" group.
> To post to this group, send email to sqlal...@googlegroups.com.
> To unsubscribe from this group, send email to sqlalchemy+...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/sqlalchemy?hl=en.