mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-03-05 15:15:59 +02:00
Log global inner exceptions
This commit is contained in:
parent
aa75b3d331
commit
7b49669b95
@ -32,6 +32,11 @@ namespace NzbDrone.Common.Instrumentation
|
||||
|
||||
Console.WriteLine("EPIC FAIL: {0}", exception);
|
||||
Logger.FatalException("EPIC FAIL: " + exception.Message, exception);
|
||||
|
||||
if (exception.InnerException != null)
|
||||
{
|
||||
AppDomainException(exception.InnerException);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user