You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4j-dev@logging.apache.org by "Sridevi Narra (JIRA)" <ji...@apache.org> on 2016/08/18 00:20:20 UTC

[jira] [Created] (LOG4J2-1529) composite configurations do not merge attributes on logger nodes

Sridevi Narra created LOG4J2-1529:
-------------------------------------

             Summary: composite configurations do not merge attributes on logger nodes
                 Key: LOG4J2-1529
                 URL: https://issues.apache.org/jira/browse/LOG4J2-1529
             Project: Log4j 2
          Issue Type: Bug
          Components: Core
    Affects Versions: 2.6.2
            Reporter: Sridevi Narra


According to Log4j2 Composite configuration documentation (https://logging.apache.org/log4j/2.x/manual/configuration.html#CompositeConfiguration) as given below, logger attributes should be merged.
"Loggers are all aggregated. Logger attributes are individually merged with duplicates being replaced by those in later configurations. ..."

However, if I have a 2 files that are composed with different Root Logger levels as given below, only the root level is used. I am not able to override the root logger level in the second file.

file1.xml:
<Configuration status="WARN">
  <Appenders>
    <Console name="Console" target="SYSTEM_OUT">
      <PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n" />
    </Console>
  </Appenders>
  <Loggers>
        <Root level="warn">
            <AppenderRef ref="Console" />
        </Root>
    </Loggers>
</Configuration>

file2.xml:
<Configuration>
  <Loggers>
        <Root level="info">
            <AppenderRef ref="Console" />
        </Root>
    </Loggers>
</Configuration>

Command line arg:
-Dlog4j.configurationFile=file1.xml,file2.xml

Actual: The resulting log level is "warn"
Expected: log level to be "info"



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: log4j-dev-unsubscribe@logging.apache.org
For additional commands, e-mail: log4j-dev-help@logging.apache.org