Completed MOB-792 (Add support for visually indicating a node is incomplete)

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@14038 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Gavin Cornwell 2009-04-21 21:15:00 +00:00
parent 88392bacdd
commit 4b98b6c0d8

View File

@ -287,9 +287,9 @@ public class NodeHandler extends AbstractHandler
{ {
generateForcedField(fullQName, form); generateForcedField(fullQName, form);
} }
else if (logger.isWarnEnabled()) else if (logger.isDebugEnabled())
{ {
logger.warn("Ignoring field \"" + fieldName + logger.debug("Ignoring field \"" + fieldName +
"\" as it is not defined for the current node and it does not appear in the 'force' list"); "\" as it is not defined for the current node and it does not appear in the 'force' list");
} }
} }
@ -360,9 +360,9 @@ public class NodeHandler extends AbstractHandler
// generate the association field // generate the association field
generateAssociationField(assocDef, null, form); generateAssociationField(assocDef, null, form);
} }
else if (logger.isWarnEnabled()) else if (logger.isDebugEnabled())
{ {
logger.warn("Ignoring field \"" + fieldName.toPrefixString(this.namespaceService) + logger.debug("Ignoring field \"" + fieldName.toPrefixString(this.namespaceService) +
"\" as it is not defined for the current node and can not be found in any model"); "\" as it is not defined for the current node and can not be found in any model");
} }
} }