[jbpm-commits] JBoss JBPM SVN: r4069 - jbpm3/trunk/modules/core/src/main/java/org/jbpm/security/authentication.

do-not-reply at jboss.org do-not-reply at jboss.org
Fri Feb 27 10:43:56 EST 2009


Author: camunda
Date: 2009-02-27 10:43:56 -0500 (Fri, 27 Feb 2009)
New Revision: 4069

Modified:
   jbpm3/trunk/modules/core/src/main/java/org/jbpm/security/authentication/SubjectAuthenticationService.java
Log:
Changed to use correct logger and switched debug level

Modified: jbpm3/trunk/modules/core/src/main/java/org/jbpm/security/authentication/SubjectAuthenticationService.java
===================================================================
--- jbpm3/trunk/modules/core/src/main/java/org/jbpm/security/authentication/SubjectAuthenticationService.java	2009-02-27 14:27:54 UTC (rev 4068)
+++ jbpm3/trunk/modules/core/src/main/java/org/jbpm/security/authentication/SubjectAuthenticationService.java	2009-02-27 15:43:56 UTC (rev 4069)
@@ -55,7 +55,7 @@
   
   private static final long serialVersionUID = 1L;
   
-  private static Log log = LogFactory.getLog(JbpmContext.class);
+  private static Log log = LogFactory.getLog(SubjectAuthenticationService.class);
   
   private Class principalClass;
   
@@ -94,7 +94,7 @@
 
       Subject subject = Subject.getSubject(AccessController.getContext());
       if (subject==null) {
-        log.warn("no javax.security.auth.Subject exists! Cannot set jbpm actorId");
+        log.info("no javax.security.auth.Subject exists! Cannot set jbpm actorId");
         return null;
       }
       




More information about the jbpm-commits mailing list