# adb logcat 으로 특정 tag의 로그만 보려면
adb logcat -s 태그명
# adb logcat 으로 특정 패키지의 로그만 보려면
adb logcat | grep -F “`adb shell ps | grep com.example.package | cut -c10-15`”
# adb logcat 으로 특정 tag의 로그만 보려면
adb logcat -s 태그명
# adb logcat 으로 특정 패키지의 로그만 보려면
adb logcat | grep -F “`adb shell ps | grep com.example.package | cut -c10-15`”