From 48434dd683d095c42c01def8ff7cb95ce0a85ce4 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Mon, 20 Apr 2026 17:16:33 +0900 Subject: [PATCH] Remove sentry DSN from repo People doing stupid shit submitting stupid errors we don't care about. --- osu.Game/Utils/SentryLogger.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Utils/SentryLogger.cs b/osu.Game/Utils/SentryLogger.cs index 3cc23264fb..873533bf2d 100644 --- a/osu.Game/Utils/SentryLogger.cs +++ b/osu.Game/Utils/SentryLogger.cs @@ -54,7 +54,7 @@ namespace osu.Game.Utils sentrySession = SentrySdk.Init(options => { - options.Dsn = "https://ad9f78529cef40ac874afb95a9aca04e@sentry.ppy.sh/2"; + options.Dsn = "https://localhost"; options.AutoSessionTracking = true; options.IsEnvironmentUser = false; options.IsGlobalModeEnabled = true;