From 6421754565869d328ea42d1c31386b7dfa329487 Mon Sep 17 00:00:00 2001 From: genteure Date: Sat, 2 Sep 2023 21:50:19 +0800 Subject: [PATCH] misc(wpf): update sentry dsn --- BililiveRecorder.WPF/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BililiveRecorder.WPF/Program.cs b/BililiveRecorder.WPF/Program.cs index b49792f..a6bec2c 100644 --- a/BililiveRecorder.WPF/Program.cs +++ b/BililiveRecorder.WPF/Program.cs @@ -308,7 +308,7 @@ namespace BililiveRecorder.WPF .WriteTo.Async(l => l.File(new CompactJsonFormatter(), logFilePath, shared: true, rollingInterval: RollingInterval.Day, rollOnFileSizeLimit: true)) .WriteTo.Sentry(o => { - o.Dsn = "https://441e00093d464442b4d523e99a139f63@o210546.ingest.sentry.io/5556540"; + o.Dsn = "https://fed94ca0022e8697c171d0d35f15c257@o210546.ingest.sentry.io/5556540"; o.SendDefaultPii = true; o.IsGlobalModeEnabled = true; o.DisableAppDomainUnhandledExceptionCapture();