Better logging for Loading Games Action exceptions

This commit is contained in:
Terry MacDonald 2021-10-11 21:13:58 +13:00
parent 3f3518f536
commit a9527ffd6e
2 changed files with 7 additions and 3 deletions

View File

@ -918,7 +918,11 @@ namespace DisplayMagician {
}
catch (AggregateException ae)
{
logger.Error(ae, $"Program/LoadGamesInBackground exception during loadGamesActions");
logger.Error(ae, $"Program/LoadGamesInBackground: One or more exception during execution of loadGamesActions");
foreach (Exception ex in ae.InnerExceptions)
{
logger.Error(ex, $"Program/LoadGamesInBackground: LoadGamesActions exception:");
}
}
// Produce a single array of Games we can reference later

View File

@ -26,8 +26,8 @@ using System.Resources;
[assembly: Guid("e4ceaf5e-ad01-4695-b179-31168eb74c48")]
// Version information
[assembly: AssemblyVersion("2.0.1.92")]
[assembly: AssemblyFileVersion("2.0.1.92")]
[assembly: AssemblyVersion("2.0.1.95")]
[assembly: AssemblyFileVersion("2.0.1.95")]
[assembly: NeutralResourcesLanguageAttribute( "en" )]
[assembly: CLSCompliant(true)]