android.util.Log Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Stub classes to run Android projects in Desktop environment
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