[jboss-cvs] JBossAS SVN: r102807 - projects/security/security-jboss-sx/branches/2.0.4.SP3_SECURITY-474/jbosssx/src/main/java/org/jboss/security/audit/providers.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Mar 23 14:59:41 EDT 2010


Author: mmoyses
Date: 2010-03-23 14:59:40 -0400 (Tue, 23 Mar 2010)
New Revision: 102807

Modified:
   projects/security/security-jboss-sx/branches/2.0.4.SP3_SECURITY-474/jbosssx/src/main/java/org/jboss/security/audit/providers/LogAuditProvider.java
Log:
JBPAPP-3969: fixing logging of LogAuditProvider

Modified: projects/security/security-jboss-sx/branches/2.0.4.SP3_SECURITY-474/jbosssx/src/main/java/org/jboss/security/audit/providers/LogAuditProvider.java
===================================================================
--- projects/security/security-jboss-sx/branches/2.0.4.SP3_SECURITY-474/jbosssx/src/main/java/org/jboss/security/audit/providers/LogAuditProvider.java	2010-03-23 18:27:38 UTC (rev 102806)
+++ projects/security/security-jboss-sx/branches/2.0.4.SP3_SECURITY-474/jbosssx/src/main/java/org/jboss/security/audit/providers/LogAuditProvider.java	2010-03-23 18:59:40 UTC (rev 102807)
@@ -33,10 +33,14 @@
    {  
       Exception e = auditEvent.getUnderlyingException();
       if(e != null)
+      {
          if(trace)
             log.trace(auditEvent, e);
+      }
       else
+      {
          if(trace)
             log.trace(auditEvent);
+      }
    } 
-}
\ No newline at end of file
+}




More information about the jboss-cvs-commits mailing list