Problem with web server 6.1 java.util.logging package
Hi,
I have recently migrated my application running on web server 6.0 to 6.1. Application is using java.util.logging package for logging. Logging configuration is being loaded by using following entry in jvm12.conf file..
jvm.option=-Djava.util.logging.config.file=/app/cubit/sunone/webserver/6.0/docs /cubit/etc/log.properties
Logging is working fine in 6.0 and messages are being logged in cubit01.log and so on..
But now after migration I found that all the messages are being logged in errors file (web server specific log file $WEBSERVER_HOME/https-<manchine-name>/logs/errors.
I moved above property from jvm12.conf file to 6.1 server.xml file like below:
<JVMOPTIONS>-Djava.util.logging.config.file=/app/cubit/sunone/webserver/6 .1/docs/cubit/etc/log.properties</JVMOPTIONS>
While server startup zero sized cubit0.log is being created at correct directory but when we run this application everything is going in errors file not in cubit0.log.
I event inserted SOP in java files to read config properties like:
System.out.print(LogManager.getLogManager().getProperty("java.util.logging.File Handler.pattern"));
Value printed is right i.e it is reading correct log.properties file then why are msgs are going to errors file. I even tuned LOG element in server.xml file but no luck.
Please help in resolving this. I am first time putting any question in forums.
Thanks in advance for any help on this.

