This is an automated email from the git hooks/post-receive script. New commit to branch feature/4309_synchro_referential in repository observe. See https://gitlab.nuiton.org/codelutin/observe.git commit 3687c3dd551c45f5cb7f46da0f45a51ee7f987ce Author: Tony CHEMIT <chemit@codelutin.com> Date: Sat Aug 13 18:00:46 2016 +0200 change log level --- .../application/swing/decoration/decorators/ObserveDecorator.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/observe-application-swing-decoration/src/main/java/fr/ird/observe/application/swing/decoration/decorators/ObserveDecorator.java b/observe-application-swing-decoration/src/main/java/fr/ird/observe/application/swing/decoration/decorators/ObserveDecorator.java index 487b012..339ed32 100644 --- a/observe-application-swing-decoration/src/main/java/fr/ird/observe/application/swing/decoration/decorators/ObserveDecorator.java +++ b/observe-application-swing-decoration/src/main/java/fr/ird/observe/application/swing/decoration/decorators/ObserveDecorator.java @@ -124,15 +124,15 @@ public class ObserveDecorator<E> extends MultiJXPathDecorator<E> implements Clon } protected Comparable<?> getDefaultUndefinedValue(String token) { - if (log.isWarnEnabled()) { - log.warn("No defined value for token [" + token + "]"); + if (log.isDebugEnabled()) { + log.debug("No defined value for token [" + token + "]"); } return t("observe.common.none"); } protected Comparable<?> getDefaultNullValue(String token) { - if (log.isWarnEnabled()) { - log.warn("Null value for token [" + token + "]"); + if (log.isDebugEnabled()) { + log.debug("Null value for token [" + token + "]"); } return t("observe.common.none"); } -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.