java.lang.NullPointerException: println needs a message
Solution:
public class MyLog {
public static void d(String tag, String msg) {
try {
android.util.Log.d((tag != null ? tag : "MyLog.d"), (msg != null ? msg : "NULL"));
} catch (Exception e) {
android.util.Log.e("MyLog.d ", "Error!");
}
}
}
Sem comentários:
Enviar um comentário