Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 지연시간처리
- 404에러
- 일정시간후
- ACCESS_FINE_LOCATION
- 동작이벤트
- 몇초후동작
- 마쉬멜로우
- 어플이름
- Runtime
- 안드로이드
- packagename
- 패키지명
- httpstatus
- Android
- 패키지명으로
- 로그잘림
- 줄바꿈
- 씨샵
- not found
- 앱이름가져오기
- 마시멜로
- logcat
- 권한요청
- 500에러
- permission
- 앱이름
- 짤림
- count 0
- 지연시간
- 다음줄
Archives
- Today
- Total
목록로그 (1)
개발자의 백팩
[Android]로그가 길어서 짤렸을때!
1 2 3 4 5 6 7 8 public void LogLineBreak(String str) { if (str.length() > 3000) { // 텍스트가 3000자 이상이 넘어가면 줄 Log.i("e", str.substring(0, 3000)); LogLineBreak(str.substring(3000)); } else { Log.i("e", str); } } http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter http://colorscripter.com/info#e" target="_blank" style="text-decoration:n..
Android
2019. 9. 19. 17:01