The Logger was used in internal jars, I saw in some Weblogic docs that it is possible to view Log4j logger output.
How to view the import java.util.logging.Logger output?
I done what mentioned in http://docs.oracle.com/cd/E21764_01/web.1111/e13739/logging_services.htm#WLLOG199
I created logger.properties and run the -Djava command but I still not able to view Logger logs.
# Specify the handlers to create in the root logger
handlers = weblogic.logging.ServerLoggingHandler
# Register handlers for the com.foo.toyshop and its child loggers
com.foo.toyshop.handlers = java.util.logging.ConsoleHandler, weblogic.logging.ServerLoggingHandler
# Do not send the toyshop log messages to the root handler
com.foo.toyshop.useParentHandlers = false
# Set the default logging level for the root logger
.level = ALL
# Set the default logging level for new ConsoleHandler instances
java.util.logging.ConsoleHandler.level = INFO
# Set the default logging level for new FileHandler instances
weblogic.logging.ServerLoggingHandler.level = ALL
[update]
For some reason I can only see the Logger output in the WL process prints (./startWL.sh) and not in the log