I have an application that has been ported from Glassfish to Weblogic, and it uses java.util.logging as its logging environment.
The only way I found the logs to work is to edit the logging.properties JVM file and restart the server. This solution is inconvenient and gives problems because the log is written to a different file than the standard for weblogic, so we have to look for too many files to enter the cluster environment. Also, for some reason this does not work on some Windows systems.
Is there a way to preserve standard java logging for writing messages to standard weblogic log files? I tried the instructions on this page , but it does not work either.
source
share