Skip to content

Commit

Permalink
nit: rename method
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjohnsonpint committed Sep 15, 2022
1 parent 35527a2 commit 08bd07e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Sentry/Internal/MainExceptionProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public void Process(Exception exception, SentryEvent sentryEvent)
{
_options.LogDebug("Running processor on exception: {0}", exception.Message);

var sentryExceptions = CreateSentryException(exception);
var sentryExceptions = CreateSentryExceptions(exception);

MoveExceptionExtrasToEvent(sentryEvent, sentryExceptions);

Expand Down Expand Up @@ -79,7 +79,7 @@ keyValue.Value is string tagValue &&
}
}

internal List<SentryException> CreateSentryException(Exception exception)
internal List<SentryException> CreateSentryExceptions(Exception exception)
{
var exceptions = exception
.EnumerateChainedExceptions(_options)
Expand Down

0 comments on commit 08bd07e

Please sign in to comment.