I am using H2 database, in-memory, within Play Framework (1.2.7).
In order to have a log of all queries I added ;TRACE_LEVEL_FILE=3
at the end of these parameters in Play's application.conf
:
db.url
%prod.db.url
%debug.db.url
But nithing happens, no file seems to be created or updated on the machine (Mac), even though there is definitely activity with the DB (when I browse to H2's web interface, I can see that many records have been written).
What am I missing? How can I get the log to be written?