From 48d32dc2ec6470cedd815c5e798a7337e057ca65 Mon Sep 17 00:00:00 2001 From: Yuriy Artamonov Date: Mon, 20 May 2013 08:55:53 +0000 Subject: [PATCH] Harmless but annoying message in logs when using entity diff manager #PL-1924 --- .../core/src/com/haulmont/cuba/core/app/EntityDiffManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/src/com/haulmont/cuba/core/app/EntityDiffManager.java b/modules/core/src/com/haulmont/cuba/core/app/EntityDiffManager.java index b98b4d161e..829f2c0a01 100644 --- a/modules/core/src/com/haulmont/cuba/core/app/EntityDiffManager.java +++ b/modules/core/src/com/haulmont/cuba/core/app/EntityDiffManager.java @@ -205,7 +205,7 @@ public class EntityDiffManager { } } else { if ((firstValue != null) || (secondValue != null)) - log.warn("Not null values for (null) view ignored, property: " + metaProperty.getName() + + log.debug("Not null values for (null) view ignored, property: " + metaProperty.getName() + "in class" + metaProperty.getDeclaringClass().getCanonicalName()); } return propertyDiff;