Skip to content

Commit

Permalink
Update Sys.java
Browse files Browse the repository at this point in the history
youfanx committed Apr 19, 2024
1 parent 3ce8be8 commit a99fa62
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion rxlib/src/main/java/org/rx/core/Sys.java
Original file line number Diff line number Diff line change
@@ -284,7 +284,9 @@ public static <T> T fallbackProxy(@NonNull Class<T> targetType, @NonNull T targe
} catch (Throwable e) {
T value = fallbackTarget.getValue();
try {
return p.fastInvoke(value);
Object r = p.fastInvoke(value);
log.warn("fallbackProxy", e);
return r;
} catch (Throwable fe) {
FallbackException fb = new FallbackException(m, p, target, value, e, fe);
if (onError == null) {

0 comments on commit a99fa62

Please sign in to comment.