Any optimal way to show sql queries which are generated automatically while using querydsl of mysemma, so that these sql queries can be viewed easily and debugging of sql query becomes easy while working on querydsl.
For Example : from(qCustomer).where(qCustomer.custId.eq("1"));
I need to know the sql generated behind the scene and want to log so that I can debug my applications easily.