54 lines
1.4 KiB
Java
54 lines
1.4 KiB
Java
package com.afunx.ble.blelitelib.log;
|
|
|
|
import android.util.Log;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class BleLiteLog {
|
|
private static final String TAG = "BleLiteLog";
|
|
private static final boolean sBleLiteLogTag = true;
|
|
private static final boolean sDebug = true;
|
|
|
|
private BleLiteLog() {
|
|
}
|
|
|
|
public static int d(String str, String str2) {
|
|
return Log.d(TAG, str + ": " + str2);
|
|
}
|
|
|
|
public static int e(String str, String str2) {
|
|
return Log.e(TAG, str + ": " + str2);
|
|
}
|
|
|
|
public static int i(String str, String str2) {
|
|
return Log.i(TAG, str + ": " + str2);
|
|
}
|
|
|
|
public static int v(String str, String str2) {
|
|
return Log.v(TAG, str + ": " + str2);
|
|
}
|
|
|
|
public static int w(String str, String str2) {
|
|
return Log.w(TAG, str + ": " + str2);
|
|
}
|
|
|
|
public static int d(String str, String str2, Throwable th) {
|
|
return Log.d(TAG, str + ": " + str2, th);
|
|
}
|
|
|
|
public static int e(String str, String str2, Throwable th) {
|
|
return Log.e(TAG, str + ": " + str2, th);
|
|
}
|
|
|
|
public static int i(String str, String str2, Throwable th) {
|
|
return Log.i(TAG, str + ": " + str2, th);
|
|
}
|
|
|
|
public static int v(String str, String str2, Throwable th) {
|
|
return Log.v(TAG, str + ": " + str2, th);
|
|
}
|
|
|
|
public static int w(String str, String str2, Throwable th) {
|
|
return Log.w(TAG, str + ": " + str2, th);
|
|
}
|
|
}
|