Hi
Iam using Logging class provided by JDK and have created a logging.properties file which specifies to use a SimpleFormatter for FileHandler. This file is specified while running using system properties.
...
java.util.logging.FileHandler.level=ALL
java.util.logging.ConsoleHandler.level=SEVERE
java.util.logging.FileHandler.formatter=java.util.logging.SimpleFormatter
.....
but the log file is getting generated in
xml format.
The run gives the following message before proceeding..
<b>
Cant set level for java.util.logging.FileHandler
Cant set level for java.util.logging.ConsoleHandler
</b>
What can be the problem??