Currently Ebean uses its own transaction logger and logs the transaction events to separate transaction logs (separate from the application logs).
This feature is to add support for using a java.util.logging.Logger instead. When it is used all the transaction events (sql, bind values, summary etc) are all sent to the java.util.logging.Logger.
To turn on this feature you either:
in ebean.properties:ebean.useJuliTransactionLogger=true
or programmatically use:serverConfig.setUseJuliTransactionLogger(true)
This feature is in HEAD.