I have log4net configured and working fine on my local machine, however, when I deploy my host (godaddy), it fails. I use the same database / config file on my dev machine and on the host. My link to log4net is configured to copy locally, and log4net.dll, .pdb and .xml exist in the trash on the host. This is an asp.net mvc application.
Edit: No exceptions are thrown, and the application works as expected (minus logging)
It Works on SQL Server 2005 Web Hosting - IIS 7
The main details of my configuration:
<root> <level value="DEBUG" /> <appender-ref ref="AdoNetAppender" /> </root> <appender name="AdoNetAppender" type="log4net.Appender.AdoNetAppender"> <bufferSize value="1" /> <connectionType value="System.Data.SqlClient.SqlConnection, System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
Does anyone have any validation ideas?
source share