Kotlin Android print to console

前端 未结 6 947
难免孤独
难免孤独 2021-02-03 17:54

I need to print some str to console (Android Studio) using Kotlin. I\'ve tried the:

Log.v() 
Log.d() 
Log.i() 
Log.w() 
Log.e() 

methods. But i

6条回答
  •  夕颜
    夕颜 (楼主)
    2021-02-03 18:17

    At this moment (android studio 2.3.3 with Kotlin plugin),

    Log.i(TAG, "Hello World")
    

    Just works. It will import android.util.Log

提交回复
热议问题