Update of /var/cvs/src/org/mmbase/datatypes/processors
In directory james.mmbase.org:/tmp/cvs-serv5148

Modified Files:
        FunctionValueIfEmptyGetter.java 
Log Message:
lowered a log


See also: http://cvs.mmbase.org/viewcvs/src/org/mmbase/datatypes/processors


Index: FunctionValueIfEmptyGetter.java
===================================================================
RCS file: 
/var/cvs/src/org/mmbase/datatypes/processors/FunctionValueIfEmptyGetter.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- FunctionValueIfEmptyGetter.java     2 Apr 2008 12:37:17 -0000       1.2
+++ FunctionValueIfEmptyGetter.java     15 Jul 2008 10:11:57 -0000      1.3
@@ -19,7 +19,7 @@
  * value, which can come in handy sometimes.
  *
  * @author Michiel Meeuwissen
- * @version $Id: FunctionValueIfEmptyGetter.java,v 1.2 2008/04/02 12:37:17 
michiel Exp $
+ * @version $Id: FunctionValueIfEmptyGetter.java,v 1.3 2008/07/15 10:11:57 
michiel Exp $
  * @since MMBase-1.8.6
  */
 
@@ -34,7 +34,9 @@
     }
 
     public Object process(Node node, Field field, Object value) {
-        log.info("node " + node + " " + field + " "  + value);
+        if (log.isDebugEnabled()) {
+            log.debug("node " + node + " " + field + " "  + value);
+        }
         if (value == null) {
             return Casting.toType(field.getDataType().getTypeAsClass(), 
node.getFunctionValue(functionName, null).get());
         } else if ("".equals("")) {
_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs

Reply via email to