제목 | Android Log (adb logcat) 보기 | ||||
---|---|---|---|---|---|
글쓴이 | DreamyCnI | 날짜 | 2018.08.17 11:37 | 조회 수 | 350 |
Kernel Log >adb shell #cat /proc/kmsg 파일로 저장 >adb shell cat proc/kmsg > kmsg.txt LogCat Main Log >adb logcat -d > main.txt >adb logcat -b main -d > main.txt LogCat System Log >adb logcat -b system -d > system.txt LogCat Events Log >adb logcat -b events -d > events.txt LogCat Radio Log >adb logcat -b radio -d > radio.txt Time Stamp를 붙이려면 >adb logcat -v time -b main -d > main.txt >adb logcat -v time -b system -d > system.txt >adb logcat -v time -b events -d > events.txt >adb logcat -v time -b radio -d > radio.txt LogCat 보면서 저장하기 >adb logcat -v time -b main -b radio -b events -b system 2>&1|tee 00_logcat.log ※ 2>&1|tee build.log 1 은 standard (표준출력) 2 는 standard error (표준 에러) 그러므로 2>&1은 표준 에러를 표준 출력으로 redirection build.log 앞에 > (redirection) 대신 | tee가 들어간 이유는 redirection으로 처리할경우 build.log가 표준출력 내용을 먹어버리기 때문에 화면출력과 파일 출력을 동시에 하기위해서 사용 SD Card에 저장하기 >adb root >adb shell #cat /proc/kmsg > /sdcard/kmsg.txt & logcat -v time -b main -d > main.txt & logcat -v time -b system -d > system.txt & |
댓글 0
번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|
13 | ADB Usage 번역 | DreamyCnI | 2018.08.17 | 323 |
12 | adb logcat 사용법 | DreamyCnI | 2018.08.17 | 764 |
11 | logcat, main+kernel로그 합치는 로그 | DreamyCnI | 2018.08.17 | 439 |
» | Android Log (adb logcat) 보기 | DreamyCnI | 2018.08.17 | 350 |
9 | adb 를 이용한 터치 이벤트 보내기 | DreamyCnI | 2018.08.17 | 679 |
8 | adb로 폰 화면 동영상 저장 | DreamyCnI | 2018.08.17 | 1739 |
7 | adb로 display 해상도 조정 | DreamyCnI | 2018.08.17 | 375 |
6 | 원격 linux 서버에서 local device로 adb 접속하기 | DreamyCnI | 2018.08.17 | 3049 |
5 | adb shell 에서 sqilte3 사용 하기 | DreamyCnI | 2018.08.17 | 197 |
4 | ADB로 스크린 캡쳐하여 저장하는 방법 | DreamyCnI | 2018.08.17 | 54839 |
3 | adb shell pm 명령어 ; apk 파일 추출 및 인스톨 | DreamyCnI | 2018.08.17 | 3328 |
2 | adb logcat manual | DreamyCnI | 2018.08.17 | 4529 |
1 | 한글 깨지는데. [1] | 오니츠 | 2019.12.12 | 210 |