Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/F1CompanionApi/F1CompanionApi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.4" />
<PackageReference Include="Scalar.AspNetCore" Version="2.7.2" />
<PackageReference Include="Sentry.AspNetCore" Version="5.16.2" />
<PackageReference Include="Sentry.AspNetCore" Version="6.3.2" />
<PackageReference Include="Supabase" Version="1.1.1" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.14.0" />
</ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions api/F1CompanionApi/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
}

// Enable structured logging
options.Experimental.EnableLogs = true;
options.EnableLogs = true;

// Performance monitoring (can be overridden via Sentry__TracesSampleRate env var)
options.TracesSampleRate =
Expand All @@ -42,7 +42,7 @@
);

// Filtering callback for structured logs
options.Experimental.SetBeforeSendLog(log =>
options.SetBeforeSendLog(log =>
{
// Filter out trace and debug logs in production
if (
Expand Down
Loading