Skip to content

Instantly share code, notes, and snippets.

@fnovoac
Created July 7, 2018 14:28
Show Gist options
  • Save fnovoac/af845f93c0247a04fc70076f8a0ac4b4 to your computer and use it in GitHub Desktop.
Save fnovoac/af845f93c0247a04fc70076f8a0ac4b4 to your computer and use it in GitHub Desktop.
import android.util.Log;
public class LogUtil {
public static final int VERBOSE = 1;
public static final int DEBUG = 2;
public static final int INFO = 3;
public static final int WARN = 4;
public static final int ERROR = 5;
public static final int NOTHING = 6;
public static int level = VERBOSE;
public static void v(String tag, String msg) {
if (level <= VERBOSE) {
Log.v(tag, msg);
}
}
public static void d(String tag, String msg) {
if (level <= DEBUG) {
Log.d(tag, msg);
}
}
public static void i(String tag, String msg) {
if (level <= INFO) {
Log.i(tag, msg);
}
}
public static void w(String tag, String msg) {
if (level <= WARN) {
Log.w(tag, msg);
}
}
public static void e(String tag, String msg) {
if (level <= ERROR) {
Log.e(tag, msg);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment