Hi, how is it possible to log SQL execution time? Is it possible to do it via logging (like logging almost-raw SQL with log4net), or maybe custom logger (IInternalLogger) or via hooks?
I'm aware of NHProf and other great tools, but I need to capture the time in the code for custom stats processing. All the answers I've found so far either point profiling tools or suggest using %d parameter in log4net (which is wrong, %d is the "current time" at the moment of running action, not the timespan of how long the action took to execute. I believe the only parameter passed from NHibernate is %m [message] - which is quite obvious.) Thanks in advance -- You received this message because you are subscribed to the Google Groups "nhusers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/nhusers. For more options, visit https://groups.google.com/groups/opt_out.
