Skip to content

Commit 4c24f51

Browse files
committed
Logging
1 parent 04d8889 commit 4c24f51

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Sentry/Internal/Hub.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ private SentryId CaptureEvent(SentryEvent evt, SentryHint? hint, Scope scope)
578578
{
579579
// Event contains a terminal exception -> finish any current transaction as aborted
580580
// Do this *after* the event was captured, so that the event is still linked to the transaction.
581-
_options.LogDebug("Ending transaction as Aborted, due to terminal unhandled exception.");
581+
_options.LogDebug("Ending transaction as Aborted, due to unhandled exception.");
582582
transaction.Finish(SpanStatus.Aborted);
583583
}
584584

src/Sentry/SentryClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ private SentryId DoSendEvent(SentryEvent @event, SentryHint? hint, Scope? scope)
356356
break;
357357

358358
case SentryEvent.ExceptionType.Unhandled:
359-
_options.LogDebug("Ending session as 'Crashed', due to terminal unhandled exception.");
359+
_options.LogDebug("Ending session as 'Crashed', due to unhandled exception.");
360360
scope.SessionUpdate = _sessionManager.EndSession(SessionEndStatus.Crashed);
361361
break;
362362

0 commit comments

Comments
 (0)