[java-opensaml] branch main updated: Shorten log prefix.
Scott Cantor
cantor.2 at osu.edu
Wed Oct 19 17:09:01 UTC 2022
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-opensaml.
View the commit online:
http://git.shibboleth.net/view/?p=java-opensaml.git;a=commit;h=311882e1533bb99cd838ac74778db10c12ae4620
The following commit(s) were added to refs/heads/main by this push:
new 311882e15 Shorten log prefix.
311882e15 is described below
commit 311882e1533bb99cd838ac74778db10c12ae4620
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Oct 19 13:08:58 2022 -0400
Shorten log prefix.
---
.../opensaml/saml/metadata/resolver/impl/AbstractMetadataResolver.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/opensaml-saml-impl/src/main/java/org/opensaml/saml/metadata/resolver/impl/AbstractMetadataResolver.java b/opensaml-saml-impl/src/main/java/org/opensaml/saml/metadata/resolver/impl/AbstractMetadataResolver.java
index 3e39587b4..b2736a6e2 100644
--- a/opensaml-saml-impl/src/main/java/org/opensaml/saml/metadata/resolver/impl/AbstractMetadataResolver.java
+++ b/opensaml-saml-impl/src/main/java/org/opensaml/saml/metadata/resolver/impl/AbstractMetadataResolver.java
@@ -683,7 +683,7 @@ public abstract class AbstractMetadataResolver extends AbstractIdentifiableIniti
*/
@Nonnull @NotEmpty protected String getLogPrefix() {
if (logPrefix == null) {
- logPrefix = String.format("Metadata Resolver %s %s:", getClass().getSimpleName(), getId());
+ logPrefix = String.format("%s %s:", getClass().getSimpleName(), getId());
}
return logPrefix;
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list