기본으로 될 줄 알았는데, 자바를 너무 만능으로 생각한걸까..
아무튼 logcat 이라는 기능이 android.util.Log 패키지로 존재하기 때문에 사용하려면 import 해주어야 한다.
import android.util.Log; |
사용 방법은 다음과 같이
Error / Warning / Information / Debug / Verbose 의 약자로 붙이면 된다.
Log.e(String, String) (오류) Log.w(String, String) (경고) Log.i(String, String) (정보) Log.d(String, String) (디버그) Log.v(String, String) (상세) |
[링크 : https://developer.android.com/studio/debug/am-logcat?hl=ko]
'Programming > android' 카테고리의 다른 글
안드로이드 HTTP를 이용한 REST API 호출 (0) | 2020.06.10 |
---|---|
retrofit 어렵네.. (0) | 2020.06.09 |
안드로이드 could not find method (0) | 2020.06.07 |
android studio - constraint layout 어렵네 (0) | 2020.06.07 |
안드로이드 앱 방향 설정하기 (0) | 2020.06.07 |