All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.util.Log Maven / Gradle / Ivy

The newest version!
package android.util;

public class Log {

	public static void d(String tag, String text) {
		System.out.println(tag+": "+text);
	}
	
	public static void e(String tag, String text) {
		System.err.println(tag+": "+text);
	}

	public static void e(String tag, String text, Exception e) {
		System.err.println(tag+": "+text);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy