From: Adrian Cumiskey
Date: Tue, 15 Apr 2008 10:57:39 +0000 (+0000)
Subject: Merged revisions 648206 via svnmerge from
X-Git-Tag: fop-1_0~376^2~225
X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=2bcd566ece9ea8fd6ff996cdb0969d4db5c345a6;p=xmlgraphics-fop.git
Merged revisions 648206 via svnmerge from
https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk
........
r648206 | jeremias | 2008-04-15 11:19:44 +0100 (Tue, 15 Apr 2008) | 1 line
Adjust information on logging given the availability of the event package.
........
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_AFPGOCAResources@648209 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/src/documentation/content/xdocs/trunk/embedding.xml b/src/documentation/content/xdocs/trunk/embedding.xml
index b2c802db7..9ed42dd9d 100644
--- a/src/documentation/content/xdocs/trunk/embedding.xml
+++ b/src/documentation/content/xdocs/trunk/embedding.xml
@@ -175,17 +175,6 @@ try {
processing run anymore. The log output of multiple, simultaneously running FOP instances
is sent to the same logger.
-
- We know this may be an issue in multi-threaded server environments if you'd like to
- know what's going on in every single FOP processing run. We're planning to add an
- additional feedback facility to FOP which can be used to obtain all sorts of specific
- feedback (validation messages, layout problems etc.). "Static logging" is mainly
- interesting for a developer working on FOP and for advanced users who are debugging
- FOP. We don't consider the logging output to be useful to normal FOP users. Please
- have some patience until we can add this feature or jump in and help us build it. We've
- set up a Wiki page
- which documents what we're going to build.
-
By default, Jakarta Commons Logging uses
JDK logging (available in JDKs 1.4 or higher) as its backend. You can configure Commons
@@ -193,6 +182,27 @@ try {
documentation for Jakarta Commons Logging on
how to configure alternative backends.
+
+ As a result of the above we differentiate between to kinds of "logging":
+
+
+
+ The use of "feedback" instead of "logging" is intentional. Most people were using
+ log output as a means to get feedback from events within FOP. Therefore, FOP now
+ includes an event
package which can be used to receive feedback from
+ the layout engine and other components within FOP per rendering run.
+ This feedback is not just some
+ text but event objects with parameters so these events can be interpreted by code.
+ Of course, there is a facility to turn these events into normal human-readable
+ messages. For details, please read on on the Events page.
+ This leaves normal logging to be mostly a thing used by the FOP developers
+ although anyone can surely activate certain logging categories but the feedback
+ from the loggers won't be separated by processing runs. If this is required,
+ the Events subsystem is the right approach.
+