code for wrap java debugger

description:

code for wrap java debugger

1
2
3
4
5
6
7
8
9
10
11
12
public static void e(String tag, String msg){
if (LOG_LEVEL > ERROR)
Log.e(tag, msg)
}
public static void w(String tsg, String msg){
if (LOG_LEVEL > ERROR)
Log.w(tag, msg)
}
public static void i(String tsg, String msg){
if (LOG_LEVEL > ERROR)
Log.i(tag, msg)
}