NIHVIVO-3355 change to log level in FormUtils; minor modifications to backend forms

This commit is contained in:
brianjlowe 2011-11-23 19:34:57 +00:00
parent 8822dc51ff
commit 7439e02964
3 changed files with 7 additions and 2 deletions

View file

@ -284,7 +284,7 @@ public class FormUtils {
Class[] paramList = new Class[1];
Method setterMethod = getSetterMethod(cls, field, SUPPORTED_TYPE_LIST);
if (setterMethod == null) {
log.warn("Could not find method set" + field + " on "
log.debug("Could not find method set" + field + " on "
+ cls.getName());
return;
}