[ 
https://issues.apache.org/jira/browse/LOG4NET-537?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15708786#comment-15708786
 ] 

Guillaume Favre commented on LOG4NET-537:
-----------------------------------------

I try a call to Exception.ToString() before the first "throw" and it works fine.
Thank you for your answer

> 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)

Reply via email to