Skip to content

Commit

Permalink
Merge pull request #43 from mindbox-cloud/mukhamedyrov/scenarios/bump…
Browse files Browse the repository at this point in the history
…Version

bump versions
  • Loading branch information
mukhamedyarov authored Sep 23, 2024
2 parents 41c16ed + 00fc0ce commit f51d903
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
<ProjectReference Include="..\Mindbox.ExceptionsHandling.Abstractions\Mindbox.ExceptionsHandling.Abstractions.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Sentry.AspNetCore" Version="3.29.1" />
<PackageReference Include="Sentry.Extensions.Logging" Version="3.29.1" />
<PackageReference Include="Sentry.NLog" Version="3.29.1" />
<PackageReference Include="Sentry.AspNetCore" Version="4.11.0" />
<PackageReference Include="Sentry.Extensions.Logging" Version="4.11.0" />
<PackageReference Include="Sentry.NLog" Version="4.11.0" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using Microsoft.Extensions.Options;
using Sentry;
using Sentry.AspNetCore;
using Sentry.Extensions.Logging;
using Sentry.NLog;
Expand All @@ -17,22 +16,22 @@ public SentryOptionsConfiguration(
_categoryProcessor = categoryProcessor;
}

public void Configure(SentryAspNetCoreOptions options)
public void Configure(SentryNLogOptions options)
{
options.AddEventProcessor(_categoryProcessor);
Configure("autobugsSentry_wrapped", options);
}

public void Configure(SentryLoggingOptions options)
public void Configure(string? name, SentryNLogOptions options)
{
options.AddEventProcessor(_categoryProcessor);
}

public void Configure(SentryNLogOptions options)
public void Configure(SentryAspNetCoreOptions options)
{
Configure("autobugsSentry_wrapped", options);
options.AddEventProcessor(_categoryProcessor);
}

public void Configure(string? name, SentryNLogOptions options)
public void Configure(SentryLoggingOptions options)
{
options.AddEventProcessor(_categoryProcessor);
}
Expand Down

0 comments on commit f51d903

Please sign in to comment.