note/Android-Kotlin

Log 사용법 간단 정리

눈부신음표 2022. 5. 11. 00:19
728x90

Debug

Log.d("tag", "string")

 

오류(error)

Log.e("tag", "string")

 

경고(warning)

Log.w("tag", "string")

 

정보(info)

Log.i("tag", "string")

 

상세(verbose)

Log.v("tag", "string")
728x90