[java-identity-provider] branch main updated: Add plugin version to some error msgs.

Scott Cantor cantor.2 at osu.edu
Mon Mar 8 19:42:22 UTC 2021


This is an automated email from the git hooks/post-receive script.

scantor pushed a commit to branch main
in repository java-identity-provider.

View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=3590c68c2fd427844916066a7c6134354a7cac28

The following commit(s) were added to refs/heads/main by this push:
       new  3590c68c2 Add plugin version to some error msgs.
3590c68c2 is described below

commit 3590c68c2fd427844916066a7c6134354a7cac28
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Mon Mar 8 14:42:20 2021 -0500

    Add plugin version to some error msgs.
---
 .../main/java/net/shibboleth/idp/plugin/PropertyDrivenIdPPlugin.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/idp-admin-api/src/main/java/net/shibboleth/idp/plugin/PropertyDrivenIdPPlugin.java b/idp-admin-api/src/main/java/net/shibboleth/idp/plugin/PropertyDrivenIdPPlugin.java
index 58b56b45b..0205ef80b 100644
--- a/idp-admin-api/src/main/java/net/shibboleth/idp/plugin/PropertyDrivenIdPPlugin.java
+++ b/idp-admin-api/src/main/java/net/shibboleth/idp/plugin/PropertyDrivenIdPPlugin.java
@@ -130,10 +130,10 @@ public abstract class PropertyDrivenIdPPlugin extends AbstractIdPPlugin {
         if (version == null) {
             version = StringSupport.trimOrNull(pluginProperties.getProperty(PLUGIN_VERSION_PROPERTY));
             if (version == null) {
-                throw new PluginException("No plugin version property or package attribute available");
+                throw new PluginException("No plugin version property or package attribute available for " + pluginId);
             }
         } else {
-            log.debug("Ignoring plugin version property in favor of package manifest");
+            log.debug("Ignoring plugin '{}' version property in favor of package manifest", pluginId);
         }
         
         try {

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list