How to output messages to the Eclipse console when developing for Android

后端 未结 5 2039
花落未央
花落未央 2020-12-22 20:05

How can I print messages (like a flag) to the Eclipse console (or log) when developing and debugging an Android app

5条回答
  •  太阳男子
    2020-12-22 21:01

    i use below log format for print my content in logCat

    Log.e("Msg","What you have to print");
    

提交回复
热议问题