I want to examine what SQL statements are generated by Ebean to find out why certain exceptions (related to SQL syntax) are occurring in my Play 2.0 application. Is
Sorry to be late to the party, but I use this in development:
db.default.logStatements=true logger.com.jolbox=DEBUG
Add those two lines to the application.conf and you are good to go.
It outputs all the sql statements. Hope it helps.