[jboss-cvs] JBossAS SVN: r61014 - trunk/system/src/main/org/jboss/profileservice/aop.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Feb 28 16:22:39 EST 2007


Author: scott.stark at jboss.org
Date: 2007-02-28 16:22:39 -0500 (Wed, 28 Feb 2007)
New Revision: 61014

Modified:
   trunk/system/src/main/org/jboss/profileservice/aop/DeployerAspects.java
   trunk/system/src/main/org/jboss/profileservice/aop/TrackingAdvice.java
Log:
Default trace to on

Modified: trunk/system/src/main/org/jboss/profileservice/aop/DeployerAspects.java
===================================================================
--- trunk/system/src/main/org/jboss/profileservice/aop/DeployerAspects.java	2007-02-28 20:48:02 UTC (rev 61013)
+++ trunk/system/src/main/org/jboss/profileservice/aop/DeployerAspects.java	2007-02-28 21:22:39 UTC (rev 61014)
@@ -49,7 +49,7 @@
    private static ComponentTypeVisitor compVisitor;
    private static ComponentTypeListener compListener;
    private static AttachmentsSerializer attachmentsSerializer;
-   private static boolean trace = log.isTraceEnabled();
+   private static boolean trace = true;
 
    public static ComponentTypeVisitor getCompVisitor()
    {

Modified: trunk/system/src/main/org/jboss/profileservice/aop/TrackingAdvice.java
===================================================================
--- trunk/system/src/main/org/jboss/profileservice/aop/TrackingAdvice.java	2007-02-28 20:48:02 UTC (rev 61013)
+++ trunk/system/src/main/org/jboss/profileservice/aop/TrackingAdvice.java	2007-02-28 21:22:39 UTC (rev 61014)
@@ -43,7 +43,7 @@
    private static Logger log = Logger.getLogger(TrackingAdvice.class);
    private static ConcurrentHashMap<Object, Map<String, Object>> attachmentsByTarget =
       new ConcurrentHashMap<Object, Map<String, Object>>();
-   private static boolean trace;
+   private static boolean trace = true;
 
    public static Attachments wrapAttachments(Attachments attachments)
    {




More information about the jboss-cvs-commits mailing list