<font><font face="tahoma,sans-serif">I was able to get this working using the SiftingAppender.  Thanks!  My request filter pulls the child app name from the URI and sets the MDC variable which yields the appropriate behavior of Spring logging to the correct log files.</font></font><div>

<font><font face="tahoma,sans-serif"><br></font></font></div><div><font><font face="tahoma,sans-serif">One final question:  is this going to be subject to race conditions?  If user A is using child app A at the same time as user B is using child app B, they're going to go through the same request filter so it's feasible that A's value gets set and that thread goes to do some intensive business logic (which let's say has a bunch of logging), B's thread comes in and changes the value, will A's thread suddenly switch log files?</font></font></div>

<div><font><font face="tahoma,sans-serif"><br></font></font></div><div><font><font face="tahoma,sans-serif">I guess the real question is when does the SiftingAppender query MDC for the value and when does it update it for the nested <appender>?<br clear="all">

</font></font><br>--adam<br><br><a href="http://gordonizer.com" target="_blank">http://gordonizer.com</a><br><br>
<br><br><div class="gmail_quote">On Thu, Nov 8, 2012 at 2:27 PM, ceki <span dir="ltr"><<a href="mailto:ceki@qos.ch" target="_blank">ceki@qos.ch</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<br>
Have you looked at SiftingAppender [1]? If you can set an MDC variable at the beginning of a request served by each child app, the results should be rather close to what you are aiming. Give it a try.<br>
<br>
[1] <a href="http://logback.qos.ch/manual/appenders.html#SiftingAppender" target="_blank">http://logback.qos.ch/manual/<u></u>appenders.html#SiftingAppender</a><div><div class="h5"><br>
<br>
On 08.11.2012 19:54, Adam Gordon wrote:<br>
</div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5">
Ok, I really should have thought about what I really needed before posting.<br>
<br>
We have a "parent" GWT web application and we have children applications<br>
that are plugged into it.  The children can run as standalone web<br>
applications but this is really only for development.  Since each child<br>
can run independently, each has its own logback.xml file.<br>
<br>
Unfortunately, when the parent is built, the children are just JAR file<br>
dependencies and the parent also has it's own logback.xml file.<br>
<br>
Using only the parent's logback.xml file, we can configure different<br>
appenders (and thus different log files) for each of the children, but<br>
this only works because of the child namespacing (the Java package<br>
name).  The parent's logback.xml defines the root logger to use the<br>
parent's appender.  What this means is that if the children are using a<br>
common framework, say Spring, all the Spring logging doesn't go into the<br>
correct child's logfile, but rather the parent's.<br>
<br>
What we need is a way to either allow each child it's own, completely<br>
separate logging configuration or we need to "tag" the logging statement<br>
in the parent's log file with some name that indicates which child the<br>
message came from.<br>
<br>
I was looking at the concept of a context selector, but it wasn't clear<br>
how I'd be able to configure this to return the correct LoggingContext<br>
depending on which child issued the logging statement.<br>
<br>
Alternatively, I suppose I could add a filter which "sets" the current<br>
logging context based on the request URI - the children's request URIs<br>
are also namespaced so that each child's request URI always starts with<br>
/child_name/...<br>
<br>
Was this clear?  Do anyone have any thoughts on how best to approach<br>
this problem?<br>
<br>
Thanks,<br>
<br>
--adam<br>
<br>
<a href="http://gordonizer.com" target="_blank">http://gordonizer.com</a><br>
<br>
<br>
<br></div></div>
On Thu, Nov 8, 2012 at 11:01 AM, ceki <<a href="mailto:ceki@qos.ch" target="_blank">ceki@qos.ch</a> <mailto:<a href="mailto:ceki@qos.ch" target="_blank">ceki@qos.ch</a>>><div class="im"><br>
wrote:<br>
<br>
<br>
    Please see [1] in the docs. For your use case, you need to define<br>
    the property in the context scope [2].<br>
<br>
    [1]<br></div>
    <a href="http://logback.qos.ch/manual/__configuration.html#__variableSubstitution" target="_blank">http://logback.qos.ch/manual/_<u></u>_configuration.html#__<u></u>variableSubstitution</a><br>
    <<a href="http://logback.qos.ch/manual/configuration.html#variableSubstitution" target="_blank">http://logback.qos.ch/manual/<u></u>configuration.html#<u></u>variableSubstitution</a>><br>
    [2] <a href="http://logback.qos.ch/manual/__configuration.html#scopes" target="_blank">http://logback.qos.ch/manual/_<u></u>_configuration.html#scopes</a><div class="im"><br>
    <<a href="http://logback.qos.ch/manual/configuration.html#scopes" target="_blank">http://logback.qos.ch/manual/<u></u>configuration.html#scopes</a>><br>
<br>
<br>
    On 08.11.2012 18:54, Adam Gordon wrote:<br>
<br>
        The Layout chapter indicates it supports property value<br>
        retrieval via<br>
        %property{key} and states that the logging context is where one<br>
        might<br>
        put a property (along w/ System properties).  I believe log4j<br>
        did this<br>
        w/ the <param name="key_name" value="some_value"> element in the<br>
        <appender> and referenced it via %properties{key_name}.<br>
<br>
        I'm not seeing how to do this in Logback in XML. Would it go in the<br>
        <logger> element?  What's the syntax?  Could someone please<br>
        point me to<br>
        the relevant section in the appropriate chapter of the manual?<br>
<br>
        Thanks,<br>
<br>
        --adam<br>
</div></blockquote><span class="HOEnZb"><font color="#888888">
<br>
<br>
-- <br>
Ceki<br>
65% of statistics are made up on the spot</font></span><div class="HOEnZb"><div class="h5"><br>
______________________________<u></u>_________________<br>
Logback-user mailing list<br>
<a href="mailto:Logback-user@qos.ch" target="_blank">Logback-user@qos.ch</a><br>
<a href="http://mailman.qos.ch/mailman/listinfo/logback-user" target="_blank">http://mailman.qos.ch/mailman/<u></u>listinfo/logback-user</a><br>
</div></div></blockquote></div><br></div>