Hi i am using Kentico 6.0
I need to configure it to use log4net.
When i open Global.asax.cs and this code Application_Error is fired twice.
public void Application_Error(object sender, EventArgs e)
{
base.Application_Error(sender, e);
Exception ex = Server.GetLastError().GetBaseException();
Logging.PutError(string.Empty, ex);
}
What am i doing wrong?
Thanks