Skip to content

Commit

Permalink
Merge branch 'main' into remove-confusing-message-Successfully-sent-c…
Browse files Browse the repository at this point in the history
…ached-envelope
  • Loading branch information
SimonCropp committed Mar 20, 2022
2 parents 954adc4 + 341087d commit 1c816d4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- Ignore zero properties for MemoryInfo ([#1531](https://github.com/getsentry/sentry-dotnet/pull/1531))
- Cleanup diagnostic source ([#1529](https://github.com/getsentry/sentry-dotnet/pull/1529))
- Remove confusing message Successfully sent cached envelope ([#1542](https://github.com/getsentry/sentry-dotnet/pull/1542))
- Fix infinite loop in SentryDatabaseLogging.UseBreadcrumbs ([#1543](https://github.com/getsentry/sentry-dotnet/pull/1543))

## 3.15.0

Expand Down
3 changes: 2 additions & 1 deletion src/Sentry.EntityFramework/SentryDatabaseLogging.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ public static class SentryDatabaseLogging
/// </summary>
/// <param name="logger">Query Logger.</param>
[Obsolete("This method is called automatically by options.AddEntityFramework. This method will be removed in future versions.")]
public static SentryCommandInterceptor? UseBreadcrumbs(IQueryLogger? logger = null) => UseBreadcrumbs(logger);
public static SentryCommandInterceptor? UseBreadcrumbs(IQueryLogger? logger = null)
=> UseBreadcrumbs(logger, true);

internal static SentryCommandInterceptor? UseBreadcrumbs(
IQueryLogger? queryLogger = null,
Expand Down

0 comments on commit 1c816d4

Please sign in to comment.