diff options
author | Glen Mazza <gmazza@apache.org> | 2004-05-12 23:19:53 +0000 |
---|---|---|
committer | Glen Mazza <gmazza@apache.org> | 2004-05-12 23:19:53 +0000 |
commit | f6064f69f4c9c001d9ab0db3d82f00e92a4359b0 (patch) | |
tree | f3729a95932f2a42c07bba8bd380a63a6a354578 /src/java/org/apache/fop/layoutmgr/FlowLayoutManager.java | |
parent | 240bcc0c6d3af5ce0e8f9d2c2ca40f0d546f5b9f (diff) | |
download | xmlgraphics-fop-f6064f69f4c9c001d9ab0db3d82f00e92a4359b0.tar.gz xmlgraphics-fop-f6064f69f4c9c001d9ab0db3d82f00e92a4359b0.zip |
Removed the getLogger() and setLogger() from FOUserAgent; replaced with Commons Logging
equivalents in places where previously used.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197591 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/layoutmgr/FlowLayoutManager.java')
-rw-r--r-- | src/java/org/apache/fop/layoutmgr/FlowLayoutManager.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/org/apache/fop/layoutmgr/FlowLayoutManager.java b/src/java/org/apache/fop/layoutmgr/FlowLayoutManager.java index 0e27e8c59..ae47270a7 100644 --- a/src/java/org/apache/fop/layoutmgr/FlowLayoutManager.java +++ b/src/java/org/apache/fop/layoutmgr/FlowLayoutManager.java @@ -60,7 +60,7 @@ public class FlowLayoutManager extends BlockStackingLayoutManager { while ((curLM = getChildLM()) != null) { if (curLM.generatesInlineAreas()) { - getLogger().error("inline area not allowed under flow - ignoring"); + log.error("inline area not allowed under flow - ignoring"); curLM.setFinished(true); continue; } @@ -169,7 +169,7 @@ public class FlowLayoutManager extends BlockStackingLayoutManager { */ public Marker retrieveMarker(String name, int pos, int boundary) { // error cannot retrieve markers in flow - getLogger().error("Cannot retrieve a marker from the flow"); + log.error("Cannot retrieve a marker from the flow"); return null; } } |