1. 터미널에서 adb 세팅 : :  https://7day.tistory.com/424

2. 

1
2
3
4
5
6
7
8
9
10
11
// 텍스트파일 UTF-8로 변환! 
iconv -t UTF-8 텍스트파일이름.txt
 
// 모든 로그 저장
adb logcat -d> 텍스트파일이름.txt
 
// 특정 태그만 검색된 로그 저장
adb logcat 태그이름:로그우선순위 *:S>텍스트파일이름.txt
 
// 예시
adb logcat decibelDataMonitor:D *:s>decibelData.txt
cs
 
 
 
cs

* 로그 우선순위 참조 : https://developer.android.com/studio/command-line/logcat?hl=ko

 

3. 따로 설정하지 않았다면 텍스트 파일은 '/user/username/'에 있음.

+ Recent posts