Back to project page Learn-From-Me.
The source code is released under:
Apache License
If you think the Android project Learn-From-Me listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.overnightApps.myapplication.app.util; //w w w.j a va 2s .c o m import android.content.Context; import android.util.Log; import android.widget.Toast; /** * Created by andre on 3/5/14. */ public class Logger { public static void p(Context context, String message) { Toast.makeText(context, message, Toast.LENGTH_LONG).show(); Log.d(context.getClass().getSimpleName(), message); } }