[Yanel-commits] rev 28369 - public/yanel/trunk/src/core/java/org/wyona/yanel/core/map

michi at wyona.com michi at wyona.com
Fri Nov 2 00:02:03 CET 2007


Author: michi
Date: 2007-11-02 00:02:03 +0100 (Fri, 02 Nov 2007)
New Revision: 28369

Modified:
   public/yanel/trunk/src/core/java/org/wyona/yanel/core/map/Realm.java
Log:
log type fixed

Modified: public/yanel/trunk/src/core/java/org/wyona/yanel/core/map/Realm.java
===================================================================
--- public/yanel/trunk/src/core/java/org/wyona/yanel/core/map/Realm.java	2007-11-01 23:01:06 UTC (rev 28368)
+++ public/yanel/trunk/src/core/java/org/wyona/yanel/core/map/Realm.java	2007-11-01 23:02:03 UTC (rev 28369)
@@ -119,7 +119,7 @@
                 policyManager = pmFactory.newPolicyManager(ConfigurationUtil.getCustomConfiguration(repoConfigElement, "policy-manager-config", "http://www.wyona.org/security/1.0"), null);
             } catch (ConfigurationException e) {
                 pmFactory = (PolicyManagerFactory) yanel.getBeanFactory().getBean("PolicyManagerFactory");
-                log.warn("Default PolicyManager will be used for realm: " + getName());
+                log.info("Default PolicyManager will be used for realm: " + getName());
                 repoConfig = FileUtil.resolve(getConfigFile(), new File(repoConfigElement.getValue()));
                 RepositoryFactory policiesRepoFactory = yanel.getRepositoryFactory("ACPoliciesRepositoryFactory");
                 Repository policiesRepo = policiesRepoFactory.newRepository(getID(), repoConfig);
@@ -141,7 +141,7 @@
                 identityManager = imFactory.newIdentityManager(ConfigurationUtil.getCustomConfiguration(repoConfigElement, "identity-manager-config", "http://www.wyona.org/security/1.0"), null);
             } catch (ConfigurationException e) {
             	imFactory = (IdentityManagerFactory) yanel.getBeanFactory().getBean("IdentityManagerFactory");
-            	log.warn("Default IdentityManager will be used for realm: " + getName());
+            	log.info("Default IdentityManager will be used for realm: " + getName());
             	repoConfig = FileUtil.resolve(getConfigFile(), new File(repoConfigElement.getValue()));
                 RepositoryFactory identitiesRepoFactory = yanel.getRepositoryFactory("ACIdentitiesRepositoryFactory");
                 Repository identitiesRepo = identitiesRepoFactory.newRepository(getID(), repoConfig);



More information about the Yanel-commits mailing list