Merged V2.1 to HEAD

6694: Removal of explicit Log4J usage


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6750 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2007-09-11 04:32:56 +00:00
parent a4b4ca69ec
commit 4fd130a5a4
40 changed files with 128 additions and 88 deletions

View File

@@ -40,7 +40,8 @@ import org.alfresco.service.cmr.repository.NodeRef;
import org.alfresco.service.namespace.QName;
import org.alfresco.util.NameMatcher;
import org.alfresco.util.Pair;
import org.apache.log4j.Logger;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
/**
* This action submits all the newer changes in the passed in NodeRef
@@ -49,7 +50,7 @@ import org.apache.log4j.Logger;
*/
public class SimpleAVMSubmitAction extends ActionExecuterAbstractBase
{
private static Logger fgLogger = Logger.getLogger(SimpleAVMSubmitAction.class);
private static Log fgLogger = LogFactory.getLog(SimpleAVMSubmitAction.class);
public static String NAME = "simple-avm-submit";