I am trying to configure some logging to debug for the application startup.
I want to enable logging for EJB deployment, etc. Unfortunately, by the time these logger categories show up on eclipse server configuration area, the application has started up and configuring the logger at this moment is pretty useless.
And everytime the server restarts the logger configuration resets, and this is the documentation says is the expected behavior!.
I have tried configuring this file too: config_master\com.sap.js.logging\logging.cfg in the server configuration area.
I put these entries in the logging.cfg:
com.sap.core.services.accessor.naming=debug
com.sap.core.services.accessor.openejb=debug
com.sap.core.services.accessor.openejb.deployer=debug
These don't help, I get this error when server starts up:
2013 08 18 16:03:29#+0530#ERROR#com.sap.core.js.logging.config.LoggingConfigurator##anonymous#ManagedService Update Queue###Wrong or non existing prefix in logging.cfg in entry [com.sap.core.services.accessor.naming]|
2013 08 18 16:03:29#+0530#ERROR#com.sap.core.js.logging.config.LoggingConfigurator##anonymous#ManagedService Update Queue###Wrong or non existing prefix in logging.cfg in entry [com.sap.core.services.accessor.openejb]|
2013 08 18 16:03:29#+0530#ERROR#com.sap.core.js.logging.config.LoggingConfigurator##anonymous#ManagedService Update Queue###Wrong or non existing prefix in logging.cfg in entry [com.sap.core.services.accessor.openejb.deployer]|
I tried searching for ways to configure a logging configuration file into the application, but could not find any.
I am stuck, how can I see my debug trace of application and server startup ??