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

android.util.Log Maven / Gradle / Ivy

There is a newer version: 0.3.3
Show 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 - 2025 Weber Informatics LLC | Privacy Policy