[jboss-svn-commits] JBL Code SVN: r20261 - labs/jbossesb/branches/JBESB_4_2_1_GA_CP/product/rosetta/src/org/jboss/soa/esb/common.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Tue Jun 3 05:18:55 EDT 2008


Author: kevin.conner at jboss.com
Date: 2008-06-03 05:18:55 -0400 (Tue, 03 Jun 2008)
New Revision: 20261

Modified:
   labs/jbossesb/branches/JBESB_4_2_1_GA_CP/product/rosetta/src/org/jboss/soa/esb/common/JBossESBPropertyService.java
Log:
Change debug to trace: JBESB-1788

Modified: labs/jbossesb/branches/JBESB_4_2_1_GA_CP/product/rosetta/src/org/jboss/soa/esb/common/JBossESBPropertyService.java
===================================================================
--- labs/jbossesb/branches/JBESB_4_2_1_GA_CP/product/rosetta/src/org/jboss/soa/esb/common/JBossESBPropertyService.java	2008-06-03 08:35:23 UTC (rev 20260)
+++ labs/jbossesb/branches/JBESB_4_2_1_GA_CP/product/rosetta/src/org/jboss/soa/esb/common/JBossESBPropertyService.java	2008-06-03 09:18:55 UTC (rev 20261)
@@ -147,7 +147,7 @@
             try
             {
                 tm.begin() ;
-                LOGGER.debug("Transaction started on current thread") ;
+                LOGGER.trace("Transaction started on current thread") ;
             }
             catch (final Throwable th)
             {
@@ -171,18 +171,18 @@
                 switch(status)
                 {
                     case Status.STATUS_ACTIVE:
-                        LOGGER.debug("Committing transaction on current thread") ;
+                        LOGGER.trace("Committing transaction on current thread") ;
                         tm.commit() ;
                         break ;
                     case Status.STATUS_MARKED_ROLLBACK:
-                        LOGGER.debug("Rollback transaction on current thread") ;
+                        LOGGER.trace("Rollback transaction on current thread") ;
                         tm.rollback();
                         break ;
                     default:
                         // Transaction is in some other state, just disassociate
-                        if (LOGGER.isDebugEnabled())
+                        if (LOGGER.isTraceEnabled())
                         {
-                            LOGGER.debug("Suspending transaction on current thread, status: " + status) ;
+                            LOGGER.trace("Suspending transaction on current thread, status: " + status) ;
                         }
                         tm.suspend() ;
                 }




More information about the jboss-svn-commits mailing list