I'm trying to examine the SQL executed by NHibernate, but when I set the level of the NHibernate.SQL logger to DEBUG, I still don't get the column values actually used. I.e. I only get something like this:
Code:
2005-12-27 11:08:07,378 [7596] DEBUG NHibernate.SQL - INSERT INTO my_table (column1, column2, column3) VALUES (@p0, @p1, @p2)
When I could really use something like this:
Code:
2005-12-27 11:08:07,378 [7596] DEBUG NHibernate.SQL - INSERT INTO my_table (column1, column2, column3) VALUES (@p0, @p1, @p2)
@p0 = 'foobar', @p1 = 42, @p2 = '2005-12-27 11:08:07'
Please consider logging the actual column values.