DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=15010>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=15010

Logkit-1.0.jar missing from Fop 0.20.4

[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |WORKSFORME



------- Additional Comments From [EMAIL PROTECTED]  2002-12-03 06:54 -------
Right, because we got rid of the dependency on LogKit in version 0.20.4. We're 
using the Avalon Logger interface now. If you had something like this before...

driver.setLogger(Hierarchy.getDefaultHierarchy().getLoggerFor("FOP"));

then what you have to change now is this:

import org.apache.avalon.framework.logger.*;
import org.apache.log.Hierarchy;

Logger log = new LogKitLogger(Hierarchy.getDefaultHierarchy().getLoggerFor
("FOP"));
driver.setLogger(log);

Just make sure you add logkit.jar to the classpath yourself if you still want 
to use it.

See these links for more information:
http://jakarta.apache.org/avalon/api/org/apache/avalon/framework/logger/package-
summary.html
http://xml.apache.org/fop/embedding.html (Here's an more complete example how 
to work with LogKit Logger)

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

Reply via email to