The J2EE server uses an RMI registry.
Also, the J2EE server uses loggers with the following names to collect the RMI implementation log:
- sun.rmi.transport.tcp
- sun.rmi.server.call
- sun.rmi.client.call
Note the following points when you use these loggers with a J2EE application:
- The RMI implementation log of the J2EE server is output.
- With the J2EE server, settings are specified so that the output from these loggers is not sent to the parent logger by using the setUseParentHandlers(boolean) method of the java.util.logging.Logger class. Therefore, the RMI implementation log cannot be output by the parent logger.
- With the J2EE server, the RMI implementation log is output for the log level FINER. When you change the log level of these loggers, do not set the following log levels:
- SEVERE
- WARNING
- INFO
- CONFIG
- FINE
- OFF