Skip to content

Commit

Permalink
优化导包和日志
Browse files Browse the repository at this point in the history
  • Loading branch information
TommyLemon committed Nov 25, 2023
1 parent c9a0a7c commit 8de9bbf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/unitauto/MethodUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
import java.io.File;
import java.io.IOException;
import java.lang.reflect.*;
import java.security.cert.CertPath;
import java.security.cert.CertificateFactory;
import java.sql.Time;
import java.sql.Timestamp;
import java.time.LocalDate;
Expand Down Expand Up @@ -994,7 +992,9 @@ public static Object getInvokeResult(@NotNull Class<?> clazz, Object instance, @
public void complete(Object data, Method m, InterfaceProxy proxy, Object... extra) throws Exception {
long endTime = System.currentTimeMillis();
long duration = endTime - startTime[0];
Log.d(TAG, "getInvokeResult " + finalMethod.toGenericString() + "; endTime = " + endTime + "; duration = " + duration + ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n\n\n");
if (Log.DEBUG) {
Log.d(TAG, "getInvokeResult " + finalMethod.toGenericString() + "; endTime = " + endTime + "; duration = " + duration + ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n\n\n");
}

if (listener == null) {
return;
Expand Down

0 comments on commit 8de9bbf

Please sign in to comment.