The question is in the title...
|
feedback
|
|
Rather than trying to output to the console, Have a look at the reference for The benefits of using LogCat are that you can print different colours depending on your log type, e.g.: | ||||
feedback
|
You need to add the android Log view in eclipse to see them. There are also other methods depending on the severity of the message (error, verbose, warning, etc..). | |||
|
feedback
|
|
I use Log.d method also please import
But please keep in mind that, when you want to see the debug messages then don't use Run As rather use "Debug As" then select Android Application. Otherwise you'll not see the debug messages. | |||
|
feedback
|
|
System.out.println() also outputs to LogCat. The Benefit of using good old System.out.println() is, you can print an object like System.out.println(Obj) to the console if you need to check if a variable is initialised or not. Log.d, Log.v, Log.w etc methods only allow you to print strings to the console and not objects. | |||
|
feedback
|