출처 : http://baeksupervisor.tistory.com/130
adb logcat [TAG_NAME]:[priority1] *:[priority2]
TAG_NAME 에 해당하는 로그는 priority1 이상 보여주고, 나머지는 priority2 이상만 보여준다.
::: priority (V < D < I < W < E < F < S) :::
V - Verbose
D - Debug
I - Info
W - Warning
E - Error
F - Fatal
S - Silent
::: Example :::
adb logcat BaekSupervisor:D *:E
BaekSupervisor 태그는 Debug 이상 보여주고 나머지는 Error 이상 보여준다.
adb logcat BaekSupervisor:D *:S
BaekSupervisor 태그는 Debug 이상 보여주고 나머지는 보여주지 않는다(Silent)
adb logcat [TAG_NAME]:[priority1] *:[priority2]
TAG_NAME 에 해당하는 로그는 priority1 이상 보여주고, 나머지는 priority2 이상만 보여준다.
::: priority (V < D < I < W < E < F < S) :::
V - Verbose
D - Debug
I - Info
W - Warning
E - Error
F - Fatal
S - Silent
::: Example :::
adb logcat BaekSupervisor:D *:E
BaekSupervisor 태그는 Debug 이상 보여주고 나머지는 Error 이상 보여준다.
adb logcat BaekSupervisor:D *:S
BaekSupervisor 태그는 Debug 이상 보여주고 나머지는 보여주지 않는다(Silent)
'Linux > Android' 카테고리의 다른 글
Android 시스템 트윅? init.rc에 적용 (0) | 2012.07.04 |
---|---|
MountService의 기본과 UMS 연결 과정 (0) | 2012.04.03 |
Input 디바이스의 상세 정보를 알아볼려면 (0) | 2012.02.13 |
java.io.FileNotFoundException: ~~~ Too many open files (0) | 2012.02.13 |
android early suspend 간략하게 정리 (0) | 2012.02.01 |