mirror of
https://github.com/k0shk0sh/FastHub.git
synced 2026-01-25 14:47:05 +00:00
77 lines
2.4 KiB
Java
77 lines
2.4 KiB
Java
package com.fastaccess.helper;
|
|
|
|
import android.support.annotation.NonNull;
|
|
import android.support.annotation.Nullable;
|
|
import android.util.Log;
|
|
|
|
import com.fastaccess.BuildConfig;
|
|
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Created by Kosh on 04/12/15 11:52 PM. copyrights @
|
|
*/
|
|
public class Logger {
|
|
|
|
private final static String TAG = Logger.class.getSimpleName();
|
|
|
|
private static final boolean DEBUG = BuildConfig.DEBUG;
|
|
|
|
private static void e(@NonNull String tag, @Nullable Object text) {
|
|
if (!DEBUG) return;
|
|
Log.e(tag, text != null ? text.toString() : "LOGGER IS NULL");//avoid null
|
|
}
|
|
|
|
private static void d(@NonNull String tag, @Nullable Object text) {
|
|
if (!DEBUG) return;
|
|
Log.d(tag, text != null ? text.toString() : "LOGGER IS NULL");//avoid null
|
|
}
|
|
|
|
private static void i(@NonNull String tag, @Nullable Object text) {
|
|
if (!DEBUG) return;
|
|
Log.i(tag, text != null ? text.toString() : "LOGGER IS NULL");//avoid null
|
|
}
|
|
|
|
public static void d(@Nullable Object text) {
|
|
d(getCurrentClassName() + " || " + getCurrentMethodName(), text);//avoid null
|
|
}
|
|
|
|
public static void i(@Nullable Object text) {
|
|
i(getCurrentClassName() + " || " + getCurrentMethodName(), text);//avoid null
|
|
}
|
|
|
|
public static void e(Object... objects) {
|
|
if (objects != null && objects.length > 0) {
|
|
e(getCurrentClassName() + " || " + getCurrentMethodName(), Arrays.toString(objects));
|
|
} else {
|
|
e(getCurrentClassName() + " || " + getCurrentMethodName(), getCurrentMethodName());
|
|
}
|
|
}
|
|
|
|
public static void e(List<Object> objects) {
|
|
if (objects != null) {
|
|
e(getCurrentClassName() + " || " + getCurrentMethodName(), Arrays.toString(objects.toArray()));
|
|
} else {
|
|
e(TAG, null);
|
|
}
|
|
}
|
|
|
|
private static String getCurrentMethodName() {
|
|
try {
|
|
return Thread.currentThread().getStackTrace()[4].getMethodName() + "()";
|
|
} catch (Exception ignored) {}
|
|
return TAG;
|
|
}
|
|
|
|
private static String getCurrentClassName() {
|
|
try {
|
|
String className = Thread.currentThread().getStackTrace()[4].getClassName();
|
|
String[] temp = className.split("[.]");
|
|
className = temp[temp.length - 1];
|
|
return className;
|
|
} catch (Exception ignored) {}
|
|
return TAG;
|
|
}
|
|
}
|