Add logging
This commit is contained in:
parent
2f871cdbf6
commit
15508e21c6
|
|
@ -32,7 +32,7 @@ public final class DynamicBridge {
|
|||
}
|
||||
|
||||
public static synchronized void hookMethod(Member hookMethod, XposedBridge.AdditionalHookInfo additionalHookInfo) {
|
||||
|
||||
DexLog.d("hooking " + hookMethod);
|
||||
if (!checkMember(hookMethod)) {
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -59,6 +59,7 @@ public class MethodInfo {
|
|||
try {
|
||||
return Class.forName(className, true, classLoader);
|
||||
} catch (Throwable throwable) {
|
||||
DexLog.e("error when getClassForSure", throwable);
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue