Log.java :  » App » android-smspopup » net » everythingandroid » smspopupdonate » Android Open Source

Android Open Source » App » android smspopup 
android smspopup » net » everythingandroid » smspopupdonate » Log.java
package net.everythingandroid.smspopupdonate;

public class Log {
  public final static String LOGTAG = "SMSPopupDonate";

  public static final boolean DEBUG = true;

  public static void v(String msg) {
    android.util.Log.v(LOGTAG, msg);
  }

  public static void e(String msg) {
    android.util.Log.e(LOGTAG, msg);
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.