We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9e4cbe1 + 83d1eaf commit 0d1d93cCopy full SHA for 0d1d93c
src/WorkItemMigrator/WorkItemImport/WitClient/WitClientUtils.cs
@@ -519,7 +519,11 @@ public void SaveWorkItemFields(WorkItem wi)
519
}
520
catch (AggregateException ex)
521
{
522
- Logger.Log(ex, "Work Item " + wi.Id + " failed to save.");
+ foreach (Exception ex2 in ex.InnerExceptions)
523
+ {
524
+ Logger.Log(LogLevel.Error, ex2.Message);
525
+ }
526
+ Logger.Log(LogLevel.Error, "Work Item " + wi.Id + " failed to save.");
527
528
529
0 commit comments