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

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  Component.java
  Log:
  update logging
  
  Revision  Changes    Path
  1.221     +4 -4      jboss-seam/src/main/org/jboss/seam/Component.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Component.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/Component.java,v
  retrieving revision 1.220
  retrieving revision 1.221
  diff -u -b -r1.220 -r1.221
  --- Component.java	16 Dec 2006 02:16:28 -0000	1.220
  +++ Component.java	16 Dec 2006 02:58:10 -0000	1.221
  @@ -51,8 +51,8 @@
   import net.sf.cglib.proxy.Factory;
   import net.sf.cglib.proxy.MethodInterceptor;
   
  -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.hibernate.validator.ClassValidator;
   import org.jboss.seam.annotations.Asynchronous;
   import org.jboss.seam.annotations.Conversational;
  @@ -122,7 +122,7 @@
    *
    * @author <a href="mailto:theute at jboss.org">Thomas Heute</a>
    * @author Gavin King
  - * @version $Revision: 1.220 $
  + * @version $Revision: 1.221 $
    */
   @Scope(ScopeType.APPLICATION)
   @SuppressWarnings("deprecation")
  @@ -130,7 +130,7 @@
   {
      public static final String PROPERTIES = "org.jboss.seam.properties";
   
  -   private static final Log log = LogFactory.getLog(Component.class);
  +   private static final LogProvider log = Logging.getLogProvider(Component.class);
   
      private ComponentType type;
      private String name;
  
  
  



More information about the jboss-cvs-commits mailing list