When my application starts I would like to default the logging
priority/level of individual classes.  I know how to set the root using the
following:

...
  <root>
    <priority value = "debug" />
    <appender-ref ref="xmllayout"/>
  </root>
...

But I would like to set the default logging priority of com.myClass to INFO
as follows...(but this doesn't work)
...
  <root>
    <priority value = "debug" />
    <priority class = "com.myClass" value ="info" />
    <appender-ref ref="xmllayout"/>
  </root>
...

Anyone know what I am doing incorrectly?



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to