Feedback from sprint 1 demo: Changed a few labels to be consistent with the rest of Share and made the start workflow forms look more like the wireframes i.e. adding field groupings. Also changed a form processor WARN message to DEBUG.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@21236 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Gavin Cornwell
2010-07-16 12:02:04 +00:00
parent cdf5065976
commit 8fb13891c9
2 changed files with 9 additions and 8 deletions

View File

@@ -188,9 +188,10 @@ public abstract class FilteredFormProcessor<ItemType, PersistType> extends Abstr
Field field = fieldProcessorRegistry.buildField(fieldName, data);
if (field == null)
{
if (getLogger().isWarnEnabled()) {
if (getLogger().isDebugEnabled())
{
String msg = "Ignoring unrecognised field \"" + fieldName + "\"";
getLogger().warn(msg);
getLogger().debug(msg);
}
}
else