Android Open Source - RC-Devices Event Logger






From Project

Back to project page RC-Devices.

License

The source code is released under:

GNU General Public License

If you think the Android project RC-Devices listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package pl.apcode.rcdevices;
/* w ww.ja v  a 2 s.  c  om*/
import android.util.Log;

//Just a wrapper for now but in future it will feed LogActivity
public class EventLogger {
  
  public static void e(String tag, String msg) {
    Log.e(tag, msg);
  }
  
  public static void e(String tag, String msg, Exception ex) {
    Log.e(tag, msg);
    if(ex != null)
      Log.d(tag, ex.getMessage());
  }
  
  public static void i(String tag, String msg) {
    Log.i(tag, msg);
  }
  
  public static void w(String tag, String msg) {
    Log.w(tag, msg);
  }
  
  public static void d(String tag, String msg) {
    Log.d(tag, msg);
  }
  
}




Java Source Code List

pl.apcode.rcdevices.Car.java
pl.apcode.rcdevices.EventLogger.java
pl.apcode.rcdevices.MainActivity.java
pl.apcode.rcdevices.Settings.java
pl.apcode.rcdevices.communication.BluetoothLinkReceiver.java
pl.apcode.rcdevices.communication.BluetoothLinkServiceHandler.java
pl.apcode.rcdevices.communication.BluetoothLinkService.java