aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKeiron Liddle <keiron@apache.org>2002-06-12 15:18:56 +0000
committerKeiron Liddle <keiron@apache.org>2002-06-12 15:18:56 +0000
commit8c153a82324739877e2d3f38b4c3d45c558dcab3 (patch)
treed9c11c2d4cef58313634d67ab7c731271721dfd3 /src
parent58bd3e9344d4a56139e0a94e551a5c29f4221c1d (diff)
downloadxmlgraphics-fop-8c153a82324739877e2d3f38b4c3d45c558dcab3.tar.gz
xmlgraphics-fop-8c153a82324739877e2d3f38b4c3d45c558dcab3.zip
added exception to log err message
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194877 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r--src/org/apache/fop/image/ImageFactory.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/apache/fop/image/ImageFactory.java b/src/org/apache/fop/image/ImageFactory.java
index 4308848cd..c148afdff 100644
--- a/src/org/apache/fop/image/ImageFactory.java
+++ b/src/org/apache/fop/image/ImageFactory.java
@@ -127,7 +127,7 @@ public class ImageFactory {
// maybe relative
URL context_url = null;
if (baseURL == null) {
- log.error("Error with image URL: " + e.getMessage() + " and no base directory is specified");
+ log.error("Error with image URL: " + e.getMessage() + " and no base directory is specified", e);
return null;
}
try {