diff options
author | Keiron Liddle <keiron@apache.org> | 2001-09-25 12:46:19 +0000 |
---|---|---|
committer | Keiron Liddle <keiron@apache.org> | 2001-09-25 12:46:19 +0000 |
commit | 894284858ff598db83eb61565cf8cbc52e2b0fa1 (patch) | |
tree | 25cd3e45afa24e43712f768ffc6b1c4f2d2f2ce8 /src/org/apache | |
parent | d62d9670a2c2c9c839677eb5a6a7cdd223b8f136 (diff) | |
download | xmlgraphics-fop-894284858ff598db83eb61565cf8cbc52e2b0fa1.tar.gz xmlgraphics-fop-894284858ff598db83eb61565cf8cbc52e2b0fa1.zip |
better debug for warning message
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194484 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/org/apache')
-rw-r--r-- | src/org/apache/fop/fo/flow/StaticContent.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/apache/fop/fo/flow/StaticContent.java b/src/org/apache/fop/fo/flow/StaticContent.java index f6a919fc7..35a388432 100644 --- a/src/org/apache/fop/fo/flow/StaticContent.java +++ b/src/org/apache/fop/fo/flow/StaticContent.java @@ -77,7 +77,7 @@ public class StaticContent extends Flow { Status status; if ((status = fo.layout(area)).isIncomplete()) { // in fact all should be laid out and clip, error etc depending on 'overflow' - log.debug("Warning: Some static content could not fit in the area."); + log.warn("Some static content could not fit in the area."); this.marker = i; if ((i != 0) && (status.getCode() == Status.AREA_FULL_NONE)) { status = new Status(Status.AREA_FULL_SOME); |