Guillaume Favre created LOG4NET-537:
---------------------------------------
Summary: Crash on log during AssemblyLoad event
Key: LOG4NET-537
URL: https://issues.apache.org/jira/browse/LOG4NET-537
Project: Log4net
Issue Type: Bug
Affects Versions: 1.2.15
Environment: Visual Studio 2013,C#, Dot.Net 4.61
nuget : <package id="log4net" version="2.0.5" targetFramework="net461" />
Reporter: Guillaume Favre
Hello,
the following code cause the program to crash.
class Program
{
private static readonly ILog Log =
LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
static void Main(string[] args)
{
try
{
AppDomain.CurrentDomain.AssemblyLoad +=
CurrentDomainAssemblyLoad;
log4net.Config.BasicConfigurator.Configure();
Exception e = new Exception("Toto");
throw e;
}
catch (Exception e)
{
Log.Error("Error ", e);
}
}
private static void CurrentDomainAssemblyLoad(object sender,
AssemblyLoadEventArgs args)
{
Log.Debug("COUCOU");
}
}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)