개발모음집

Log 짤림 현상 해결 본문

Android

Log 짤림 현상 해결

void 2017. 7. 22. 00:27

https://stackoverflow.com/questions/7606077/how-to-display-long-messages-in-logcat


public void logLargeString(String str) {
if (str.length() > 3000) {
Log.i("e", str.substring(0, 3000));
logLargeString(str.substring(3000));
} else {
Log.i("e", str); // continuation
}
}


이 메서드에 날리면 됨