Skip to content

Commit

Permalink
fix: disable crash logging (Sentry) debug logs also on debug
Browse files Browse the repository at this point in the history
Sentry started to log too much after the bump to 6.32.0
  • Loading branch information
wzieba committed Feb 16, 2024
1 parent 333c1c7 commit 9fbd7bd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class WPCrashLoggingDataProvider @Inject constructor(
}

override val buildType: String = BuildConfig.BUILD_TYPE
override val enableCrashLoggingLogs: Boolean = BuildConfig.DEBUG
override val enableCrashLoggingLogs: Boolean = false
override val locale: Locale
get() = localeManager.getLocale()
override val releaseName: String = BuildConfig.VERSION_NAME
Expand Down

0 comments on commit 9fbd7bd

Please sign in to comment.