<@U0BFDUP0E> How to check the log of `println` whe...
# android
a
@jw How to check the log of
println
when I execute the Android?
g
For Android you should use Log class https://developer.android.com/reference/android/util/Log.html or any wrapper above Log that makes it more pleasant to use, like Timber https://github.com/JakeWharton/timber
b
Although println does show up in logcat
👍 1