Update of /var/cvs/src/org/mmbase/datatypes/processors
In directory james.mmbase.org:/tmp/cvs-serv18946
Modified Files:
Tag: MMBase-1_8
FunctionValueIfEmptyGetter.java
Log Message:
lowered 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.1.2.1
retrieving revision 1.1.2.2
diff -u -b -r1.1.2.1 -r1.1.2.2
--- FunctionValueIfEmptyGetter.java 2 Apr 2008 12:33:53 -0000 1.1.2.1
+++ FunctionValueIfEmptyGetter.java 16 Apr 2008 15:36:40 -0000 1.1.2.2
@@ -19,7 +19,7 @@
* value, which can come in handy sometimes.
*
* @author Michiel Meeuwissen
- * @version $Id: FunctionValueIfEmptyGetter.java,v 1.1.2.1 2008/04/02 12:33:53
michiel Exp $
+ * @version $Id: FunctionValueIfEmptyGetter.java,v 1.1.2.2 2008/04/16 15:36:40
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