This is just a small change that should make debugging easier when things fall apart on Android. Log.w takes a nullable Throwable argument after the msg. Information about that exception will be included in the log output.
For example:
Requesting review failed
com.google.android.play.core.review.internal.zzu: Failed to bind to the service.
I needed this to understand why the review prompt wasn't showing (turns out it's because my emulator doesn't have Google Play installed) and I hope this can help others in the future!!
This is just a small change that should make debugging easier when things fall apart on Android.
Log.w
takes a nullableThrowable
argument after themsg
. Information about that exception will be included in the log output.For example:
I needed this to understand why the review prompt wasn't showing (turns out it's because my emulator doesn't have Google Play installed) and I hope this can help others in the future!!