From: markt Date: Sat, 6 Sep 2008 22:05:35 +0000 (+0000) Subject: Correct log name. Add warning about user name uniqueness. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=913ac265a583b95356897bbdd34aae3917eecae2;p=tomcat7.0 Correct log name. Add warning about user name uniqueness. git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@692748 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/catalina/realm/CombinedRealm.java b/java/org/apache/catalina/realm/CombinedRealm.java index d94681bd0..2ac1181a9 100644 --- a/java/org/apache/catalina/realm/CombinedRealm.java +++ b/java/org/apache/catalina/realm/CombinedRealm.java @@ -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.