Android Studio Dolphin 버전에서 새로 나온 LogCat의 필터 쿼리
- 내 앱에서 발생하는 내용만 보기 (PIDs for the local app project)
package:mine
- 내 앱에서 발생하는 내용에서 필터링 (ex) ViewModel 또는 UiState라는 문자가 포함된 내용만 필터링
package:mine ViewModel | UiState
- 패키지, 태그, 레벨 조합
package:my-package-ID, tag:my-tag, level:ERROR
- -를 붙여 특정 태그 제외
-tag:exclude-this-tag
- 정규 표현식 (~을 키값 뒤에 붙여준다)
tag~:regex-tag
Logcat
https://brownsoo.medium.com/새로운-로그캣-필터-쿼리-a77da65f04f7
https://m1nzi.tistory.com/9
'Android > Debugging' 카테고리의 다른 글
Retrofit 사용 API Interface 구현체 내부적 구현 (0) | 2023.12.22 |
---|---|
RoomDB warning: Schema export directory is not provided (1) | 2023.11.29 |
Android 13에 따른 compileSdkVersion , targetSdkVersion 타겟 33 구글 정책 변경 (0) | 2022.12.23 |
Android GoogleMap Ensure that the "Google Maps Android API v2" is enabled. 구글맵 키 오류 (0) | 2022.08.01 |
무선 Debugging 사용 (0) | 2022.03.22 |