XC_MethodReplacement log throwable

This commit is contained in:
Jim Wu 2020-04-18 20:49:08 +08:00
parent 4d9d8adc32
commit 7b638a706d
1 changed files with 1 additions and 0 deletions

View File

@ -29,6 +29,7 @@ public abstract class XC_MethodReplacement extends XC_MethodHook {
Object result = replaceHookedMethod(param);
param.setResult(result);
} catch (Throwable t) {
XposedBridge.log(t);
param.setThrowable(t);
}
}