It's nice to know that a query took a long time. For example:
2016-01-08 14:42:46,150 [57] WARN Dapper.SimpleLoad.SimpleLoadExtensions [(null)] - RECEIVED 1 ROWS IN QUERY RESULT SET IN 17235ms.
However, this warning would be a lot more useful if we knew where it had come from in the codebase, and what SQL was executed; possibly even the values of parameters.
This was fixed a long while ago. We don't emit the parameter values because that's something of of a security risk (parameters could contain data that should remain confidential).
It's nice to know that a query took a long time. For example:
However, this warning would be a lot more useful if we knew where it had come from in the codebase, and what SQL was executed; possibly even the values of parameters.