Back to project page GPSMover.
The source code is released under:
GNU General Public License
If you think the Android project GPSMover 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 org.unlucky.gpsmover.app.util; /*from ww w .j a va 2s . c om*/ import android.util.Log; public class Common { private static final String TAG = "GPSMover"; public static void log(String msg) { Log.i(TAG, msg); } }