[jboss-cvs] JBossCache/src/org/jboss/cache/transaction ...

Brian Stansberry brian.stansberry at jboss.com
Tue Jun 26 15:03:01 EDT 2007


  User: bstansberry
  Date: 07/06/26 15:03:01

  Modified:    src/org/jboss/cache/transaction 
                        GenericTransactionManagerLookup.java
  Log:
  [JBCACHE-1113] Reduce logging level
  
  Revision  Changes    Path
  1.3       +6 -6      JBossCache/src/org/jboss/cache/transaction/GenericTransactionManagerLookup.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: GenericTransactionManagerLookup.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/transaction/GenericTransactionManagerLookup.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- GenericTransactionManagerLookup.java	11 Jun 2007 12:58:16 -0000	1.2
  +++ GenericTransactionManagerLookup.java	26 Jun 2007 19:03:01 -0000	1.3
  @@ -25,7 +25,7 @@
    * If a transaction manager is not found, returns a {@link DummyTransactionManager}.
    *
    * @author Markus Plesser
  - * @version $Id: GenericTransactionManagerLookup.java,v 1.2 2007/06/11 12:58:16 msurtani Exp $
  + * @version $Id: GenericTransactionManagerLookup.java,v 1.3 2007/06/26 19:03:01 bstansberry Exp $
    */
   public class GenericTransactionManagerLookup implements TransactionManagerLookup
   {
  @@ -125,14 +125,14 @@
            }
            catch (NamingException e)
            {
  -            log.info("Failed to perform a lookup for [" + knownJNDIManager[0] + " (" + knownJNDIManager[1]
  +            log.debug("Failed to perform a lookup for [" + knownJNDIManager[0] + " (" + knownJNDIManager[1]
                       + ")]");
               continue;
            }
            if (jndiObject instanceof TransactionManager)
            {
               tm = (TransactionManager) jndiObject;
  -            log.info("Found TransactionManager for " + knownJNDIManager[1]);
  +            log.debug("Found TransactionManager for " + knownJNDIManager[1]);
               return;
            }
         }
  @@ -142,7 +142,7 @@
         {
            log.debug("Trying WebSphere 5.1: " + WS_FACTORY_CLASS_5_1);
            clazz = Class.forName(WS_FACTORY_CLASS_5_1);
  -         log.info("Found WebSphere 5.1: " + WS_FACTORY_CLASS_5_1);
  +         log.debug("Found WebSphere 5.1: " + WS_FACTORY_CLASS_5_1);
         }
         catch (ClassNotFoundException ex)
         {
  @@ -150,7 +150,7 @@
            {
               log.debug("Trying WebSphere 5.0: " + WS_FACTORY_CLASS_5_0);
               clazz = Class.forName(WS_FACTORY_CLASS_5_0);
  -            log.info("Found WebSphere 5.0: " + WS_FACTORY_CLASS_5_0);
  +            log.debug("Found WebSphere 5.0: " + WS_FACTORY_CLASS_5_0);
            }
            catch (ClassNotFoundException ex2)
            {
  @@ -158,7 +158,7 @@
               {
                  log.debug("Trying WebSphere 4: " + WS_FACTORY_CLASS_4);
                  clazz = Class.forName(WS_FACTORY_CLASS_4);
  -               log.info("Found WebSphere 4: " + WS_FACTORY_CLASS_4);
  +               log.debug("Found WebSphere 4: " + WS_FACTORY_CLASS_4);
               }
               catch (ClassNotFoundException ex3)
               {
  
  
  



More information about the jboss-cvs-commits mailing list