From 62683058a37706bbc45391a6acff3b88520d607f Mon Sep 17 00:00:00 2001 From: Simon Cropp Date: Sun, 20 Mar 2022 11:55:16 +1100 Subject: [PATCH] remove confusing message Successfully sent cached envelope (#1542) --- CHANGELOG.md | 1 + src/Sentry/Internal/Http/CachingTransport.cs | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aba9ba683d..67344b931c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,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 diff --git a/src/Sentry/Internal/Http/CachingTransport.cs b/src/Sentry/Internal/Http/CachingTransport.cs index f7b767e6e9..e4d4542444 100644 --- a/src/Sentry/Internal/Http/CachingTransport.cs +++ b/src/Sentry/Internal/Http/CachingTransport.cs @@ -176,8 +176,6 @@ private async Task InnerProcessCacheAsync(string file, CancellationToken cancell _options.LogDebug("Sending cached envelope: {0}", envelope.TryGetEventId()); await _innerTransport.SendEnvelopeAsync(envelope, cancellation).ConfigureAwait(false); - - _options.LogDebug("Successfully sent cached envelope: {0}", envelope.TryGetEventId()); } // OperationCancel should not log an error catch (OperationCanceledException ex)