We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4356247 commit ed0758dCopy full SHA for ed0758d
java/src/ca/weblite/objc/NSObject.java
@@ -55,7 +55,7 @@
55
* @author shannah
56
*/
57
public class NSObject extends Proxy implements PeerableRecipient {
58
-
+ private static final Logger LOG = Logger.getLogger("NSObject");
59
60
61
/**
@@ -514,6 +514,7 @@ public void forwardInvocation(long linvocation) {
514
515
return;
516
} catch (Exception ex){
517
+ LOG.log(Level.SEVERE, String.format("Method invocation caused exception: %s", method));
518
ex.printStackTrace(System.err);
519
throw new RuntimeException(ex);
520
}
0 commit comments