Once the project builds and loads correctly, you may want to use Log4Net instead of the built-in logging facilities. This is what your iBATIS/logging node might look like:
<iBATIS> <logging> <logFactoryAdapter type="IBatisNet.Common.Logging.Impl.Log4NetLoggerFA, IBatisNet.Common.Logging.Log4Net"> <arg key="configType" value="external" /> </logFactoryAdapter> </logging> </iBATIS> You'll need to put these two files in your bin directory: log4net.dll IBatisNet.Common.Logging.Log4Net.dll By setting the configType to external, your application is responsible for initializing Log4Net. Here's a link to the Log4Net website: http://logging.apache.org/log4net/ --- Ron Grabowski <[EMAIL PROTECTED]> wrote: > IBatisNet supports a pluggable logging arhcitecture. I (most people?) > use Log4Net. Here's an untested config file that routes log messages > to > System.Diagnostics.Trace which is routed to a text file.

