aboutsummaryrefslogtreecommitdiff
path: root/velocity-engine-core/src/main/java/org/apache
diff options
context:
space:
mode:
authorClaude Brisson <cbrisson@apache.org>2019-03-05 13:14:44 +0000
committerClaude Brisson <cbrisson@apache.org>2019-03-05 13:14:44 +0000
commitc5d37917bcd7cd48abe08e886b9de786223cc1a7 (patch)
tree45384451acbbdff48fdc111fce19eef9dd0ac7db /velocity-engine-core/src/main/java/org/apache
parente6bc7dc9661efabf26a8aade5b546829bc8667dd (diff)
downloadapache-velocity-engine-c5d37917bcd7cd48abe08e886b9de786223cc1a7.tar.gz
[engine] Without strict mode, invalid references rendering and invalid method calls should all be at the debug loglevel
git-svn-id: https://svn.apache.org/repos/asf/velocity/engine/trunk@1854849 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'velocity-engine-core/src/main/java/org/apache')
-rw-r--r--velocity-engine-core/src/main/java/org/apache/velocity/runtime/parser/node/ASTMethod.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/velocity-engine-core/src/main/java/org/apache/velocity/runtime/parser/node/ASTMethod.java b/velocity-engine-core/src/main/java/org/apache/velocity/runtime/parser/node/ASTMethod.java
index c046b618..4e0fa834 100644
--- a/velocity-engine-core/src/main/java/org/apache/velocity/runtime/parser/node/ASTMethod.java
+++ b/velocity-engine-core/src/main/java/org/apache/velocity/runtime/parser/node/ASTMethod.java
@@ -176,7 +176,7 @@ public class ASTMethod extends SimpleNode
if (i < params.length - 1)
plist.append(", ");
}
- log.warn("Object '{}' does not contain method {}({}) at {}[line {}, column {}]", o.getClass().getName(), methodName, plist, getTemplateName(), getLine(), getColumn());
+ log.debug("Object '{}' does not contain method {}({}) at {}[line {}, column {}]", o.getClass().getName(), methodName, plist, getTemplateName(), getLine(), getColumn());
}
/*