[1.41.0.50b]/VS2010/NUnit
I have a test using NHibernate that outputs a bunch of NHibernate-specific logging (sql statements etc.) when I run it via ReSharper's test runner or NUnit's GUI runner. Example:
Code:
log4net: XmlHierarchyConfigurator: Configuration update mode [Merge].
...
15:53:18.221 [TestRunnerThread] INFO Environment (null) - NHibernate 3.1.0.4000 (3.1.0.4000)
...
15:53:26.311 [TestRunnerThread] DEBUG MyTest (null) - TEST!
However when I run it via NCrunch the output is only displaying the log4net debug info and the my own log entries, none of the log entries for NHibernate. Example:
Code:
log4net: XmlHierarchyConfigurator: Configuration update mode [Merge].
...
15:54:49.830 [11] DEBUG MyTest (null) - TEST!
Is this a known issue? (Not particular for NHibernate but I guess the same logging "problem" exist with other 3rd party libraries?).
Thanks.