(boolean isStatic, String callType, ReflectorMethod refMethod, Object[] params)
| 1032 | } |
| 1033 | |
| 1034 | private static void dbgCallVoid(boolean isStatic, String callType, ReflectorMethod refMethod, Object[] params) |
| 1035 | { |
| 1036 | String s = refMethod.getTargetMethod().getDeclaringClass().getName(); |
| 1037 | String s1 = refMethod.getTargetMethod().getName(); |
| 1038 | String s2 = ""; |
| 1039 | |
| 1040 | if (isStatic) |
| 1041 | { |
| 1042 | s2 = " static"; |
| 1043 | } |
| 1044 | |
| 1045 | Log.dbg(callType + s2 + " " + s + "." + s1 + "(" + ArrayUtils.arrayToString(params) + ")"); |
| 1046 | } |
| 1047 | |
| 1048 | private static void dbgFieldValue(boolean isStatic, String accessType, ReflectorField refField, Object val) |
| 1049 | { |
nothing calls this directly
no test coverage detected