Log global inner exceptions

This commit is contained in:
Keivan Beigi 2014-10-03 15:55:11 -07:00
parent aa75b3d331
commit 7b49669b95
1 changed files with 5 additions and 0 deletions

View File

@ -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);
}
}
}
}