You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.4 KiB
64 lines
1.4 KiB
package org.xing.utils;
|
|
|
|
import android.os.Handler;
|
|
import android.os.Message;
|
|
import android.util.Log;
|
|
|
|
|
|
/**
|
|
* Created by fujiayi on 2017/5/17.
|
|
*/
|
|
|
|
public class Logger {
|
|
private static final String TAG = "Logger";
|
|
|
|
private static final String INFO = "INFO";
|
|
|
|
private static final String ERROR = "ERROR";
|
|
|
|
private static boolean ENABLE = true;
|
|
|
|
private static Handler handler;
|
|
|
|
public static void info(String message) {
|
|
info(TAG, message);
|
|
}
|
|
|
|
public static void info(String tag, String message) {
|
|
log(INFO, tag, message);
|
|
}
|
|
|
|
public static void error(String message) {
|
|
error(TAG, message);
|
|
}
|
|
|
|
public static void error(String tag, String message) {
|
|
log(ERROR, tag, message);
|
|
}
|
|
|
|
public static void setHandler(Handler handler) {
|
|
Logger.handler = handler;
|
|
}
|
|
|
|
private static void log(String level, String tag, String message) {
|
|
if (!ENABLE) {
|
|
return;
|
|
}
|
|
if (level.equals(INFO)) {
|
|
Log.i(tag, message);
|
|
|
|
} else if (level.equals(ERROR)) {
|
|
Log.e(tag, message);
|
|
}
|
|
if (handler != null) {
|
|
Message msg = Message.obtain();
|
|
msg.obj = "[" + level + "]" + message + "\n";
|
|
handler.sendMessage(msg);
|
|
}
|
|
}
|
|
|
|
public static void setEnable(boolean isEnable) {
|
|
ENABLE = isEnable;
|
|
}
|
|
}
|