Update SENTRY_DSN to use different one for development builds

This commit is contained in:
Kamil Trzciński 2022-12-15 21:34:51 +01:00
parent 54354fe9e9
commit 998bf9506e

View file

@ -5,7 +5,11 @@ namespace CommonHelpers
{
public static class Log
{
internal static String SENTRY_DSN = "https://a6f1925b30fe43529aa7cefd0af7b8a4@o37791.ingest.sentry.io/4504316313993216";
#if PRODUCTION_BUILD
internal static String SENTRY_DSN = "https://3c93e3c3b47b40ffba72d9cb333fc6d7@o4504334913830912.ingest.sentry.io/4504334914879488";
#else
internal static String SENTRY_DSN = "https://d9204614b2cd47468bfa1ea2ab55da4e@o4504334914355200.ingest.sentry.io/4504334915469312";
#endif
#if DEBUG
private static bool LogToTrace = true;