Skip to content
Snippets Groups Projects
Unverified Commit 554dbe1a authored by Matthias Urhahn's avatar Matthias Urhahn Committed by GitHub
Browse files

Add Build.FINGERPRINT to debug log make debugging efforts quicker (DEV) #1888

parent aba1b98c
No related branches found
No related tags found
No related merge requests found
package de.rki.coronawarnapp.util package de.rki.coronawarnapp.util
import android.app.Application import android.app.Application
import android.os.Build
import de.rki.coronawarnapp.BuildConfig import de.rki.coronawarnapp.BuildConfig
import de.rki.coronawarnapp.util.debug.FileLogger import de.rki.coronawarnapp.util.debug.FileLogger
import timber.log.Timber import timber.log.Timber
...@@ -20,6 +21,7 @@ object CWADebug { ...@@ -20,6 +21,7 @@ object CWADebug {
Timber.i("CWA version: %s (%s)", BuildConfig.VERSION_CODE, BuildConfig.GIT_COMMIT_SHORT_HASH) Timber.i("CWA version: %s (%s)", BuildConfig.VERSION_CODE, BuildConfig.GIT_COMMIT_SHORT_HASH)
Timber.i("CWA flavor: %s (%s)", BuildConfig.FLAVOR, BuildConfig.BUILD_TYPE) Timber.i("CWA flavor: %s (%s)", BuildConfig.FLAVOR, BuildConfig.BUILD_TYPE)
Timber.i("Build.FINGERPRINT: %s", Build.FINGERPRINT)
} }
val isDebugBuildOrMode: Boolean val isDebugBuildOrMode: Boolean
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment