[java-identity-provider] branch main updated: Give some hints that downloading is happening

Rod Widdowson rdw at steadingsoftware.com
Sat Aug 29 12:50:27 UTC 2020


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

rdw 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=18bad210c9beb13b69069aec73c00f5ec512b1cd

The following commit(s) were added to refs/heads/main by this push:
       new  18bad210c Give some hints that downloading is happening
18bad210c is described below

commit 18bad210c9beb13b69069aec73c00f5ec512b1cd
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Sat Aug 29 13:50:05 2020 +0100

    Give some hints that downloading is happening
---
 .../java/net/shibboleth/idp/installer/plugin/impl/PluginInstaller.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/idp-installer/src/main/java/net/shibboleth/idp/installer/plugin/impl/PluginInstaller.java b/idp-installer/src/main/java/net/shibboleth/idp/installer/plugin/impl/PluginInstaller.java
index bc1b713a2..9ca2e14ca 100644
--- a/idp-installer/src/main/java/net/shibboleth/idp/installer/plugin/impl/PluginInstaller.java
+++ b/idp-installer/src/main/java/net/shibboleth/idp/installer/plugin/impl/PluginInstaller.java
@@ -381,7 +381,8 @@ public final class PluginInstaller extends AbstractInitializableComponent implem
     private void download(final Resource baseResource, final String fileName) throws IOException {
         final Resource fileResource = baseResource.createRelativeResource(fileName);
         final Path filePath = downloadDirectory.resolve(fileName);
-        LOG.debug("Downloading from {} to {}", fileResource.getDescription(), filePath);
+        LOG.info("Downloading from {}", fileResource.getDescription());
+        LOG.debug("Downloading to {}", filePath);
         try (final OutputStream fileOut = new BufferedOutputStream(
                 new FileOutputStream(filePath.toFile()))) {
             fileResource.getInputStream().transferTo(fileOut);

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


More information about the commits mailing list