Add SandHook beforeHookedMethod Throwable log output
This commit is contained in:
parent
ea00d06937
commit
c7509151fb
|
|
@ -356,6 +356,7 @@ public class HookStubManager {
|
||||||
try {
|
try {
|
||||||
((XC_MethodHook) snapshot[beforeIdx]).callBeforeHookedMethod(param);
|
((XC_MethodHook) snapshot[beforeIdx]).callBeforeHookedMethod(param);
|
||||||
} catch (Throwable t) {
|
} catch (Throwable t) {
|
||||||
|
XposedBridge.log(t);
|
||||||
// reset result (ignoring what the unexpectedly exiting callback did)
|
// reset result (ignoring what the unexpectedly exiting callback did)
|
||||||
param.setResult(null);
|
param.setResult(null);
|
||||||
param.returnEarly = false;
|
param.returnEarly = false;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue