Skip to content

Commit

Permalink
add one more exception catching layer
Browse files Browse the repository at this point in the history
  • Loading branch information
YuliiaKovalova committed Apr 25, 2024
1 parent bcb5ba3 commit b2d984e
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ public List<BuildAnalyzerFactory> CreateBuildAnalyzerFactories(AnalyzerAcquisiti
}
}
}
catch (Exception ex)
{
_loggingService.LogComment(buildEventContext, MessageImportance.Normal, "CustomAnalyzerFailedRuleLoading", ex?.Message);
}

return analyzersFactories;
}
Expand Down

0 comments on commit b2d984e

Please sign in to comment.