You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 12, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: ApplicationInsightsSDKRules.ruleset
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,8 @@
11
11
<RuleId="CA1001"Action="Warning" />
12
12
<RuleId="CA1009"Action="Warning" />
13
13
<RuleId="CA1016"Action="Warning" />
14
+
<!-- Suppressing Message "Modify 'method' to catch a more specific exception type, or rethrow the exception" because we already catch Exceptions we care about and either log/ignore others. -->
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,8 @@
1
1
# Changelog
2
+
3
+
### Version 2.10.0
4
+
- Update Base SDK to version 2.10.0
5
+
2
6
### Version 2.10.0-beta4
3
7
- Update Base SDK to version 2.10.0-beta4
4
8
-[ILogger - If an exception is passed to log, then Exception.Message is populated as ExceptionTelemetry.Message. If TrackExceptionsAsExceptionTelemetry is false, then Exception.Message is stored as custom property "ExceptionMessage"](https://github.com/Microsoft/ApplicationInsights-dotnet-logging/pull/282)
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
Copy file name to clipboardExpand all lines: src/DiagnosticSourceListener/DiagnosticSourceTelemetryModule.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ public DiagnosticSourceTelemetryModule() : this(Track)
46
46
/// <summary>
47
47
/// Initializes a new instance of the <see cref="DiagnosticSourceTelemetryModule"/> class.
48
48
/// </summary>
49
-
/// <param name="onEventWrittenHandler">Action to be executed each time an event is written to format and send via the configured <see cref="TelemetryClient"/></param>
49
+
/// <param name="onEventWrittenHandler">Action to be executed each time an event is written to format and send via the configured <see cref="TelemetryClient"/>.</param>
0 commit comments