Details
-
Bug
-
Resolution: Cannot Reproduce
-
Critical
-
None
-
None
-
Oracle oc4j 10.1.3.4, 10.1.3.5
Description
using the same configuration logback logs on tomcat 6, but its not logging on oc5j 10.3.5
i have a configuration like this in logback.xml
..
<appender name="DAILY" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>file.log</file> <!-- scos pt ca nu face rollover -->
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<!-- daily rollover -->
<fileNamePattern>bcr-ovd.%d
.log</fileNamePattern>
</rollingPolicy>
<encoder>
<pattern>%-5p [%d
] %c
{0}%X
{user} - %m%n</pattern>
</encoder>
</appender>
..
<logger name="java.sql" level="info" />
<logger name="ro.x" value="info" />
..
<root level="warn">
<appender-ref ref="DAILY" />
</root>
..
and i have a class ro.x.product.action.LogonAction like this:
LOGGER.info("version: " + PrivateConstants.getInstance().getVersion());
and BaseAction is : ro.x.product.action.BaseAction, declaring the logger for all actions
public static final Logger LOGGER = LoggerFactory.getLogger(BaseAction.class);
this line and many more i dont see in oc4j for some reason, but they are logged in tomcat 6...
what is going on?