You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@marmotta.apache.org by wi...@apache.org on 2013/07/20 13:13:07 UTC

git commit: providing more details when template does not work

Updated Branches:
  refs/heads/develop 64ba0285a -> 857c77b8f


providing more details when template does not work


Project: http://git-wip-us.apache.org/repos/asf/incubator-marmotta/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-marmotta/commit/857c77b8
Tree: http://git-wip-us.apache.org/repos/asf/incubator-marmotta/tree/857c77b8
Diff: http://git-wip-us.apache.org/repos/asf/incubator-marmotta/diff/857c77b8

Branch: refs/heads/develop
Commit: 857c77b8f129d9729b5368300e19223bbef26aa8
Parents: 64ba028
Author: Sergio Fernández <wi...@apache.org>
Authored: Sat Jul 20 13:00:42 2013 +0200
Committer: Sergio Fernández <wi...@apache.org>
Committed: Sat Jul 20 13:00:42 2013 +0200

----------------------------------------------------------------------
 .../apache/marmotta/platform/core/filters/TemplatingFilter.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/857c77b8/platform/marmotta-core/src/main/java/org/apache/marmotta/platform/core/filters/TemplatingFilter.java
----------------------------------------------------------------------
diff --git a/platform/marmotta-core/src/main/java/org/apache/marmotta/platform/core/filters/TemplatingFilter.java b/platform/marmotta-core/src/main/java/org/apache/marmotta/platform/core/filters/TemplatingFilter.java
index 4c3e541..cf3a370 100644
--- a/platform/marmotta-core/src/main/java/org/apache/marmotta/platform/core/filters/TemplatingFilter.java
+++ b/platform/marmotta-core/src/main/java/org/apache/marmotta/platform/core/filters/TemplatingFilter.java
@@ -167,7 +167,7 @@ public class TemplatingFilter implements MarmottaHttpFilter {
 
                     return;
                 } catch(TemplatingException e) {
-                    log.error("templating did not work");
+                    log.error("templating did not work: {}", e.getMessage());
                 }
 
             }