What is LogCat in Eclipse?

前端 未结 9 1684
余生分开走
余生分开走 2020-12-07 01:04

What does LogCat do in Eclipse?

How do I use it? I have never used the log cat before in Eclipse, so I don\'t understand.

9条回答
  •  执笔经年
    2020-12-07 01:39

    When you run your applications in debug you can have details on why they are crashing, plus if you want to write in it you can :

    Log.i(String tag, String msg);
    

提交回复
热议问题