Update the Sentry DSN

This commit is contained in:
Kamil Trzciński 2022-12-18 23:22:27 +01:00
parent c90cfea2aa
commit 3796a319af
2 changed files with 5 additions and 1 deletions

View file

@ -205,6 +205,9 @@ namespace CommonHelpers
{
get
{
#if PRODUCTION_BUILD
return "";
#else
try
{
using (var registryKey = Registry.CurrentUser.CreateSubKey(@"Software\SteamDeckTools", true))
@ -223,6 +226,7 @@ namespace CommonHelpers
{
return "exception";
}
#endif
}
}

View file

@ -7,7 +7,7 @@ namespace CommonHelpers
public static class Log
{
#if PRODUCTION_BUILD
internal static String SENTRY_DSN = "https://3c93e3c3b47b40ffba72d9cb333fc6d7@o4504334913830912.ingest.sentry.io/4504334914879488";
internal static String SENTRY_DSN = null; // "https://3c93e3c3b47b40ffba72d9cb333fc6d7@o4504334913830912.ingest.sentry.io/4504334914879488";
#else
internal static String SENTRY_DSN = "https://d9204614b2cd47468bfa1ea2ab55da4e@o4504334914355200.ingest.sentry.io/4504334915469312";
#endif