- Made the status message after cut/copy more generic

- Changed the missing property message to be WARN instead of DEBUG and created section in log4j.properties for property sheet and modelling debug settings

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5066 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Gavin Cornwell
2007-02-07 14:13:55 +00:00
parent bb1973354e
commit a6b568ae8a
2 changed files with 3 additions and 3 deletions

View File

@@ -94,8 +94,8 @@ public class UIProperty extends PropertySheetItem
else
{
// warn the user that the property was not found anywhere
if (missingPropsLogger.isDebugEnabled())
missingPropsLogger.debug("Failed to find property '" + propertyName + "' for node: " + node.getNodeRef().toString());
if (missingPropsLogger.isWarnEnabled())
missingPropsLogger.warn("Failed to find property '" + propertyName + "' for node: " + node.getNodeRef().toString());
}
}
else