Linux/Android
Android. Logcat 필터링.
뭉기
2012. 3. 20. 21:01
출처 : 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)