log java android code example
Example 1: how to use Log android studio Java
import android.util.Log;
Log.d("tagString", "messageString");
Example 2: making Log in android
Log.i("The place or function from where log is made","The log text to show");