Correct log name. Add warning about user name uniqueness.
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sat, 6 Sep 2008 22:05:35 +0000 (22:05 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sat, 6 Sep 2008 22:05:35 +0000 (22:05 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@692748 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/realm/CombinedRealm.java

index d94681b..2ac1181 100644 (file)
@@ -34,11 +34,12 @@ import org.apache.juli.logging.LogFactory;
 /**
  * Realm implementation that contains one or more realms. Authentication is
  * attempted for each realm in the order they were configured. If any realm
- * authenticates the user then the authentication succeeds.
+ * authenticates the user then the authentication succeeds. When combining
+ * realms usernames should be unique across all combined realms.
  */
 public class CombinedRealm extends RealmBase {
 
-    private static Log log = LogFactory.getLog(RealmBase.class);
+    private static Log log = LogFactory.getLog(CombinedRealm.class);
 
     /**
      * The string manager for this package.