From 3ba56115b7e844925ff82f3abb2c579208353e18 Mon Sep 17 00:00:00 2001 From: James Crosswell Date: Thu, 26 Mar 2026 16:40:00 +1300 Subject: [PATCH] test: This clearly needs formatting Testing https://github.com/getsentry/sentry-dotnet/pull/5065 - https://github.com/getsentry/sentry-dotnet/pull/5065 --- samples/Sentry.Samples.Console.Basic/Program.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/samples/Sentry.Samples.Console.Basic/Program.cs b/samples/Sentry.Samples.Console.Basic/Program.cs index 0603caab27..5281c9591f 100644 --- a/samples/Sentry.Samples.Console.Basic/Program.cs +++ b/samples/Sentry.Samples.Console.Basic/Program.cs @@ -33,12 +33,12 @@ // This option is recommended, which enables Sentry's "Release Health" feature. options.AutoSessionTracking = true; - // This option is recommended for client applications only. It ensures all threads use the same global scope. - // If you are writing a background service of any kind, you should remove this. - options.IsGlobalModeEnabled = true; + // This option is recommended for client applications only. It ensures all threads use the same global scope. + // If you are writing a background service of any kind, you should remove this. + options.IsGlobalModeEnabled = true; - // This option tells Sentry to capture 100% of traces. You still need to start transactions and spans. - options.TracesSampleRate = 1.0; +// This option tells Sentry to capture 100% of traces. You still need to start transactions and spans. +options.TracesSampleRate = 1.0; // This option enables Sentry Logs created via SentrySdk.Logger. options.EnableLogs = true;