[java-identity-provider] branch master updated: IDP-1568 Turn down noisy logging.
Rod Widdowson
rdw at steadingsoftware.com
Mon Mar 2 08:46:09 EST 2020
This is an automated email from the git hooks/post-receive script.
rdw pushed a commit to branch master
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=6b7b98aee5b8699997ea2e02f249811dd37dc47e
The following commit(s) were added to refs/heads/master by this push:
new 6b7b98a IDP-1568 Turn down noisy logging.
6b7b98a is described below
commit 6b7b98aee5b8699997ea2e02f249811dd37dc47e
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Mon Mar 2 13:45:20 2020 +0000
IDP-1568 Turn down noisy logging.
https://issues.shibboleth.net/jira/browse/IDP-1568
---
.../attribute/resolver/spring/BaseResolverPluginDependencyParser.java | 2 +-
.../idp/attribute/resolver/spring/BaseResolverPluginParser.java | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/idp-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/BaseResolverPluginDependencyParser.java b/idp-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/BaseResolverPluginDependencyParser.java
index 70c9492..0cc3502 100644
--- a/idp-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/BaseResolverPluginDependencyParser.java
+++ b/idp-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/BaseResolverPluginDependencyParser.java
@@ -42,7 +42,7 @@ public abstract class BaseResolverPluginDependencyParser extends AbstractSingleB
@Nonnull final BeanDefinitionBuilder builder) {
final String pluginId = StringSupport.trimOrNull(config.getAttributeNS(null, "ref"));
- log.info("Parsing configuration for {} with pluginId: {}", config.getLocalName(), pluginId);
+ log.debug("Parsing configuration for {} with pluginId: {}", config.getLocalName(), pluginId);
builder.addConstructorArgValue(pluginId);
}
diff --git a/idp-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/BaseResolverPluginParser.java b/idp-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/BaseResolverPluginParser.java
index e153dd7..2724727 100644
--- a/idp-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/BaseResolverPluginParser.java
+++ b/idp-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/BaseResolverPluginParser.java
@@ -61,7 +61,7 @@ public abstract class BaseResolverPluginParser extends AbstractSingleBeanDefinit
@Nonnull final BeanDefinitionBuilder builder) {
super.doParse(config, parserContext, builder);
final String id = StringSupport.trimOrNull(config.getAttributeNS(null, "id"));
- log.info("Parsing configuration for {} plugin with id: {}", config.getLocalName(), id);
+ log.debug("Parsing configuration for {} plugin with id: {}", config.getLocalName(), id);
builder.addPropertyValue("id", id);
if (null != id) {
defnId = id;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list