mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
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:
@@ -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
|
||||
|
Reference in New Issue
Block a user