[jboss-cvs] jboss-seam/src/main/org/jboss/seam/intercept ...
Norman Richards
norman.richards at jboss.com
Fri Dec 15 21:58:11 EST 2006
User: nrichards
Date: 06/12/15 21:58:11
Modified: src/main/org/jboss/seam/intercept RootInterceptor.java
SessionBeanInterceptor.java
Log:
update logging
Revision Changes Path
1.7 +3 -3 jboss-seam/src/main/org/jboss/seam/intercept/RootInterceptor.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: RootInterceptor.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/intercept/RootInterceptor.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -b -r1.6 -r1.7
--- RootInterceptor.java 1 Nov 2006 02:54:02 -0000 1.6
+++ RootInterceptor.java 16 Dec 2006 02:58:11 -0000 1.7
@@ -9,8 +9,8 @@
import java.io.Serializable;
import java.util.List;
-import org.apache.commons.logging.Log;
-import org.apache.commons.logging.LogFactory;
+import org.jboss.seam.log.LogProvider;
+import org.jboss.seam.log.Logging;
import org.jboss.seam.Component;
import org.jboss.seam.InterceptorType;
import org.jboss.seam.Seam;
@@ -26,7 +26,7 @@
public class RootInterceptor implements Serializable
{
- private static final Log log = LogFactory.getLog(RootInterceptor.class);
+ private static final LogProvider log = Logging.getLogProvider(RootInterceptor.class);
private final InterceptorType type;
private boolean isSeamComponent;
1.10 +3 -3 jboss-seam/src/main/org/jboss/seam/intercept/SessionBeanInterceptor.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: SessionBeanInterceptor.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/intercept/SessionBeanInterceptor.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -b -r1.9 -r1.10
--- SessionBeanInterceptor.java 14 Nov 2006 01:47:16 -0000 1.9
+++ SessionBeanInterceptor.java 16 Dec 2006 02:58:11 -0000 1.10
@@ -13,8 +13,8 @@
import javax.interceptor.AroundInvoke;
import javax.interceptor.InvocationContext;
-import org.apache.commons.logging.Log;
-import org.apache.commons.logging.LogFactory;
+import org.jboss.seam.log.LogProvider;
+import org.jboss.seam.log.Logging;
import org.jboss.seam.Component;
import org.jboss.seam.InterceptorType;
import org.jboss.seam.Seam;
@@ -28,7 +28,7 @@
*/
public class SessionBeanInterceptor extends RootInterceptor
{
- private static final Log log = LogFactory.getLog(SessionBeanInterceptor.class);
+ private static final LogProvider log = Logging.getLogProvider(SessionBeanInterceptor.class);
public static ThreadLocal<Component> COMPONENT = new ThreadLocal<Component>();
More information about the jboss-cvs-commits
mailing list