Skip to content

Commit bcf2c4c

Browse files
authored
Merge pull request #1285 from WalletConnect/fix/enable_logging_on_internal
fix: enable internal logging
2 parents 362ff73 + cf97c09 commit bcf2c4c

File tree

1 file changed

+1
-1
lines changed
  • core/android/src/main/kotlin/com/walletconnect/android/utils

1 file changed

+1
-1
lines changed

core/android/src/main/kotlin/com/walletconnect/android/utils/Timber.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import com.walletconnect.android.BuildConfig
44
import timber.log.Timber
55

66
internal fun plantTimber() {
7-
if (BuildConfig.DEBUG) {
7+
if (BuildConfig.BUILD_TYPE == "debug" || BuildConfig.BUILD_TYPE == "internal") {
88
if (Timber.treeCount == 0) {
99
Timber.plant(
1010
object : Timber.DebugTree() {

0 commit comments

Comments
 (0)