libbluray | branch: master | hpi1 <[email protected]> | Wed Mar 6 14:25:46 2013 +0200| [ee82b3a652efca982501847c6619379e9b3ed981] | committer: hpi1
Added logging to J2SE IxcRegistry (interface proxy is not implemented) > http://git.videolan.org/gitweb.cgi/libbluray.git/?a=commit;h=ee82b3a652efca982501847c6619379e9b3ed981 --- src/libbluray/bdj/java-j2se/org/dvb/io/ixc/IxcRegistry.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/libbluray/bdj/java-j2se/org/dvb/io/ixc/IxcRegistry.java b/src/libbluray/bdj/java-j2se/org/dvb/io/ixc/IxcRegistry.java index e808dd9..5c2d8f6 100644 --- a/src/libbluray/bdj/java-j2se/org/dvb/io/ixc/IxcRegistry.java +++ b/src/libbluray/bdj/java-j2se/org/dvb/io/ixc/IxcRegistry.java @@ -38,6 +38,8 @@ import org.videolan.Logger; public class IxcRegistry { public static Remote lookup(XletContext xc, String path) throws NotBoundException, RemoteException { + logger.info("Lookup " + path); + logger.warning("Lookup does not create proxy object !"); int orgid, appid; int s1, s2; String name; @@ -90,6 +92,7 @@ public class IxcRegistry { } public static void bind(XletContext xc, String name, Remote obj) throws AlreadyBoundException { + logger.info("Bind " + name); if (xc == null || name == null || obj == null) throw new NullPointerException(); @@ -115,6 +118,7 @@ public class IxcRegistry { } public static void unbind(XletContext xc, String name) throws NotBoundException { + logger.info("Unbind " + name); if (xc == null || name == null) throw new NullPointerException(); @@ -135,7 +139,6 @@ public class IxcRegistry { } public static void rebind(XletContext xc, String name, Remote obj) { - try { unbind(xc, name); } catch (NotBoundException e) { _______________________________________________ libbluray-devel mailing list [email protected] http://mailman.videolan.org/listinfo/libbluray-devel
