Ceki,

Thanks very much for those pointers. I see SLF4J seems to be your creation! From reading the documentation at your site, I see now why all of my configuration efforts are ignored.

And I can see now that this really isn't so much of a Maven issue as a Jetty one.

So double-thanks for stumbling across my message and pointing me in the right direction. I'm still not sure how to "instruct Maven or Jetty to use the correct binding" (I'm somewhat of a newbie to Java/ Jetty/Maven), but I'll get there somehow.

For what it's worth, I *love* Maven. It has enhanced immeasurably my development environment. I would not have made nearly the progress I have up to this point without it.

--David

David,

I am not very familiar with maven-jetty6-plugin. However, from what
you describe, it looks like jetty is using SLF4J's SimpleLogger
binding instead of its log4j binding. This is attested by the
following line:

  2 [main] INFO org.mortbay.log - Logging to
     [EMAIL PROTECTED] via org.mortbay.log.Slf4jLog

When Jetty uses SLF4J's SimpleLogger binding log4j configuration files
have no affect as log4j is not used by Jetty. You need to instruct
Maven or Jetty to use the correct binding. For more details on SLF4J
bindings please see http://www.slf4j.org.

Reply via email to