Skip to content

Commit

Permalink
♻️ (TfsNodeStructure.cs): remove redundant Telemetry.TrackException c…
Browse files Browse the repository at this point in the history
…all in exception handling

The Telemetry.TrackException call is removed because it is redundant and does not provide additional value in this context. The exception is already logged with Log.LogDebug, which is sufficient for debugging purposes.
  • Loading branch information
MrHinsh committed Jul 29, 2024
1 parent bb2145a commit 02540ff
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,6 @@ private NodeInfo GetOrCreateNode(string nodePath, DateTime? startDate, DateTime?
} catch (Exception ex)
{
Log.LogDebug(" Not Found:", currentAncestorPath);
Telemetry.TrackException(ex, null, null);
parentNode = null;
}

Expand Down

0 comments on commit 02540ff

Please sign in to comment.