Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit d4de9a1c authored by Markus Quaritsch's avatar Markus Quaritsch
Browse files

surround writing sum-data with try-catch

parent c745b279
Branches
Tags
No related merge requests found
...@@ -395,7 +395,11 @@ namespace TUGraz.VectoCore.OutputData ...@@ -395,7 +395,11 @@ namespace TUGraz.VectoCore.OutputData
view.Columns.Remove(dataColumn); view.Columns.Remove(dataColumn);
} }
try {
_sumWriter.WriteSumData(view); _sumWriter.WriteSumData(view);
} catch (Exception e) {
LogManager.GetLogger(typeof(SummaryDataContainer).FullName).Error(e.Message);
}
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment