Issue Type: Bug Bug
Affects Versions: 1.0.4
Assignee: Logback dev list
Components: Appender, Other
Created: 06/Jun/12 4:20 PM
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{yyyyMMdd}.log</fileNamePattern>
</rollingPolicy>
<encoder>
<pattern>%-5p [%d{HH:mm:ss.SSS}] %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?
Environment: Oracle oc4j 10.1.3.4, 10.1.3.5
Project: logback-core
Labels: logging ancestors oc4j
Priority: Critical Critical
Reporter: Mihai S
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira