what-the-bank/sources/com/pingan/ai/face/utils/PaFaceLogger.java

34 lines
869 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.pingan.ai.face.utils;
/* loaded from: classes3.dex */
public class PaFaceLogger {
public static final String TAG = "PaFace Detector";
public static boolean debug = false;
public static native void d(String str);
public static native void d(String str, String str2);
public static native void error(String str);
public static native void error(String str, String str2);
public static native void i(String str);
public static native void i(String str, String str2);
public static native void log(String str);
public static native void log(String str, String str2);
public static native void setDebug(boolean z);
public static native void v(String str);
public static native void v(String str, String str2);
public PaFaceLogger() {
throw new UnsupportedOperationException();
}
}