http://bugzilla.slf4j.org/show_bug.cgi?id=190

Hugues Malphettes <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #2 from Hugues Malphettes <[email protected]> 2011-01-28 
07:33:45 CET ---
Hi Ceki and Olivier.
Tomcat uses its own facxade for the logging framework.
They have a simple Log interface with what one would expect out of those things
and a hardcoded implementation for it:
In org.apache.juli.logging.LogFactory
    public Log getInstance(String name)
        throws LogConfigurationException {
        return DirectJDKLog.getInstance(name);
    }

The javadoc says:
There is no discovery mechanism at all.
Please use a different jar with a different source to return a different Log
implementation.

So Olivier's version of the juli's LogFactory must look like this:
return SLF4JLog.getInstance(name)


I am looking into eventually adopting the tomcat versions of jasper for the
upcoming jetty-8 with servlet-3.0 and jsp-2.2 support.
Tomcat jasper uses this logging faxcade and in that context we would be
interested into an implementation of juli-over-slf4j.

-- 
Configure bugmail: http://bugzilla.slf4j.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
_______________________________________________
slf4j-dev mailing list
[email protected]
http://qos.ch/mailman/listinfo/slf4j-dev

Reply via email to