[jboss-cvs] jboss-seam/src/main/org/jboss/seam/contexts ...

Norman Richards norman.richards at jboss.com
Fri Dec 15 21:58:10 EST 2006


  User: nrichards
  Date: 06/12/15 21:58:10

  Modified:    src/main/org/jboss/seam/contexts   
                        BusinessProcessContext.java Contexts.java
                        Lifecycle.java
  Log:
  update logging
  
  Revision  Changes    Path
  1.33      +4 -4      jboss-seam/src/main/org/jboss/seam/contexts/BusinessProcessContext.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: BusinessProcessContext.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/contexts/BusinessProcessContext.java,v
  retrieving revision 1.32
  retrieving revision 1.33
  diff -u -b -r1.32 -r1.33
  --- BusinessProcessContext.java	11 Oct 2006 04:42:12 -0000	1.32
  +++ BusinessProcessContext.java	16 Dec 2006 02:58:10 -0000	1.33
  @@ -11,8 +11,8 @@
   import java.util.Map;
   import java.util.Set;
   
  -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.ScopeType;
   import org.jboss.seam.Seam;
   import org.jboss.seam.core.Events;
  @@ -27,11 +27,11 @@
    * @author <a href="mailto:theute at jboss.org">Thomas Heute</a>
    * @author <a href="mailto:steve at hibernate.org">Steve Ebersole</a>
    * @author Gavin King
  - * @version $Revision: 1.32 $
  + * @version $Revision: 1.33 $
    */
   public class BusinessProcessContext implements Context {
   
  -   private static final Log log = LogFactory.getLog(BusinessProcessContext.class);
  +   private static final LogProvider log = Logging.getLogProvider(BusinessProcessContext.class);
   
      private final Map<String, Object> additions = new HashMap<String, Object>();
      private final Set<String> removals = new HashSet<String>();
  
  
  
  1.46      +5 -5      jboss-seam/src/main/org/jboss/seam/contexts/Contexts.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Contexts.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/contexts/Contexts.java,v
  retrieving revision 1.45
  retrieving revision 1.46
  diff -u -b -r1.45 -r1.46
  --- Contexts.java	14 Dec 2006 10:27:00 -0000	1.45
  +++ Contexts.java	16 Dec 2006 02:58:10 -0000	1.46
  @@ -6,8 +6,8 @@
    */
   package org.jboss.seam.contexts;
   
  -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.core.Events;
   
  @@ -16,11 +16,11 @@
    * 
    * @author Gavin King
    * @author <a href="mailto:theute at jboss.org">Thomas Heute</a>
  - * @version $Revision: 1.45 $
  + * @version $Revision: 1.46 $
    */
   public class Contexts {
   
  -   private static final Log log = LogFactory.getLog( Contexts.class );
  +   private static final LogProvider log = Logging.getLogProvider( Contexts.class );
   
      static final ThreadLocal<Context> applicationContext = new ThreadLocal<Context>();
      static final ThreadLocal<Context> methodContext = new ThreadLocal<Context>();
  
  
  
  1.72      +4 -4      jboss-seam/src/main/org/jboss/seam/contexts/Lifecycle.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Lifecycle.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/contexts/Lifecycle.java,v
  retrieving revision 1.71
  retrieving revision 1.72
  diff -u -b -r1.71 -r1.72
  --- Lifecycle.java	14 Dec 2006 10:27:00 -0000	1.71
  +++ Lifecycle.java	16 Dec 2006 02:58:10 -0000	1.72
  @@ -15,8 +15,8 @@
   import javax.servlet.http.HttpServletRequest;
   import javax.servlet.http.HttpSession;
   
  -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.ScopeType;
   import org.jboss.seam.Seam;
  @@ -31,12 +31,12 @@
   /**
    * @author Gavin King
    * @author <a href="mailto:theute at jboss.org">Thomas Heute</a>
  - * @version $Revision: 1.71 $
  + * @version $Revision: 1.72 $
    */
   public class Lifecycle
   {
   
  -   private static final Log log = LogFactory.getLog( Lifecycle.class );
  +   private static final LogProvider log = Logging.getLogProvider( Lifecycle.class );
   
      public static void beginRequest(ExternalContext externalContext) {
         log.debug( ">>> Begin web request" );
  
  
  



More information about the jboss-cvs-commits mailing list