console print in android studio code example
Example 1: android studio print console
Log.println(Log.DEBUG,"debug", "Your message to print");
Example 2: android studio print console
System.out.println("Your message");
Log.println(Log.DEBUG,"debug", "Your message to print");
System.out.println("Your message");