WEblogic и журналирование приложений
Коллеги, добрый день. Подскажите куда копать? :) В классах приложения получаю стандартный ява логгер:
private static final Logger logger = Logger.getLogger(CalcConversFormController.class.getName());
Есть logging.properties, который подсовываем WEblogic`у:
# 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
- weblogic.xml из приложения:
<wls:logging>
<log-filename>E:\Vlad\workspace_new\wls12.2\base_domain\servers\AdminServer\logs\UIJSF_log.txt</log-filename>
<rotate-log-on-startup>true</rotate-log-on-startup>
<logging-enabled>true</logging-enabled>
<rotation-type>bySize</rotation-type>
<file-size-limit>500000</file-size-limit>
</wls:logging>
Почему файл создаётся, но в него ничего не пишет приложение? В Server.log тоже ничего не пишет. Куда смотреть, что делать?