I am sure this question has been asked before but I cannot find it.
I am trying to print some simple statements during the runtime of my application. When writing a normal java application I just do
System.out.println("message");
and for iOS I do
NSLog(@"message");
I have looked around but can't find a simple solution for android? Is it possible that I have a setting misplaced in eclipse? What is the standard code used for this and where would it usually appear within eclipse
Log.v() Log.d() Log.i() Log.w() and Log.e()methods.