Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We can create appender-ref tags to specify an appender by reference. Is there something similar for Layouts?

For example:

// ...

<layout name="MYLAYOUT" class="org.apache.log4j.PatternLayout">
    <param name="ConversionPattern" value="[%d][%t][%c][%M][%p]: %m%n"/>
</layout>

<root>
    <appender-ref ref="CONSOLE"/>
    <layout-ref ref="MYLAYOUT"/>
</root>
share|improve this question

1 Answer

Unfortunately, this is impossible out of the box.

You could, however, write your own layout class, e.g. as a subclass of PatternLayout.
Your custom layout could then feature a parameter ConversionPattern-ref, or it could be implemented in such a way that all instances use the pattern that was last set (instead of reverting to a default).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.