Hello
We would like to log nhibernate queries with parameter values but the "nhibernate" log doesn't do it, at least it just logs the queries with the parameters but not the value of the parameters, which makes the log useless. The "nhibernate.sql" logs the queries with the value of the parameters, which is what we want but we don't want to log the queries twice, once in the "nhibernate" and once in the "nhibernate.sql", the generated log files are already big, we don't want to make them bigger by logging double and useless information.
The only solution that we have found is to set the level of the "nhibernate" logger to "warn" and the level of the "nhibernate.sql" to "debug". Is that the only solution?
Is it possible to set level of the "nhibernate" logger to "info" and don't log the aqueries or to log the queries with the value of the parameters?