Logcat

To filter logs for particular application you can use run (using application id):

adb logcat | grep com.example.androidapp

applicationId can be within gradle build file or AndroidManifest.xml

android {
    defaultConfig {
        applicationId "com.example.androidapp"

WARNINGs and above

# Warnings and above
adb logcat *:W

# Errors and above
adb logcat *:E

Particular PID

adb logcat --pid=$(adb shell pidof com.thorgmobileapp)