mirror of
https://github.com/terrymacdonald/DisplayMagician.git
synced 2024-08-30 18:32:20 +00:00
Better logging for Loading Games Action exceptions
This commit is contained in:
parent
3f3518f536
commit
a9527ffd6e
@ -918,7 +918,11 @@ namespace DisplayMagician {
|
|||||||
}
|
}
|
||||||
catch (AggregateException ae)
|
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
|
// Produce a single array of Games we can reference later
|
||||||
|
@ -26,8 +26,8 @@ using System.Resources;
|
|||||||
[assembly: Guid("e4ceaf5e-ad01-4695-b179-31168eb74c48")]
|
[assembly: Guid("e4ceaf5e-ad01-4695-b179-31168eb74c48")]
|
||||||
|
|
||||||
// Version information
|
// Version information
|
||||||
[assembly: AssemblyVersion("2.0.1.92")]
|
[assembly: AssemblyVersion("2.0.1.95")]
|
||||||
[assembly: AssemblyFileVersion("2.0.1.92")]
|
[assembly: AssemblyFileVersion("2.0.1.95")]
|
||||||
[assembly: NeutralResourcesLanguageAttribute( "en" )]
|
[assembly: NeutralResourcesLanguageAttribute( "en" )]
|
||||||
[assembly: CLSCompliant(true)]
|
[assembly: CLSCompliant(true)]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user